/* style.css */
body {
    background-color: #ffffff;
    color: #212121;
    font-family: 'Montserrat', sans-serif; /* Usamos la nueva fuente */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

.logo img {
    width: 150px;
}

h1 {
    font-weight: normal;
    color: #212121;
    text-transform: uppercase;
    letter-spacing: 2px;
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.container-valores {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #00318B;
}

.boton-activo {
    background-color: #FF9306;
    color: #212121;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 20px;
    width: 100%;
}

.campo-cambio {
    display: flex;
    align-items: center;
    background-color: #e0e0e0;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
}

.campo-cambio label {
    font-size: 1.5em;
    font-weight: bold;
    margin-right: 10px;
    color: #FF9306;
}

.campo-cambio input {
    background: none;
    border: none;
    color: #212121;
    font-size: 1.5em;
    width: 100%;
    outline: none;
}

.info-cambio {
    text-align: center;
    color: #4CAF50;
    margin-top: 20px;
    margin-bottom: 15px;
}

.robot-icon {
    text-align: center;
    margin-top: 30px;
}

.robot-icon img {
    width: 350px;
    height: auto;
}

.fecha {
    text-align: center;
    margin-top: 15px;
    color: #666;
}
.monitores {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}

.monitores button {
    background-color: #e0e0e0;
    color: #212121;
    border: none;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    flex-grow: 1;
    transition: background-color 0.3s, color 0.3s;
}

.monitores button.boton-activo {
    background-color: #FF9306;
    color: #212121;
}

.monitores button:hover {
    background-color: #ffb75e;
}

.monitores button.boton-activo:hover {
    background-color: #FF9306;
}

select {
    display: block;
    width: 100%; /* O el ancho que prefieras */
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 25px; /* Para hacerlo redondeado */
    background-color: #ffa500; /* Color naranja */
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    -webkit-appearance: none; /* Elimina los estilos predeterminados en navegadores Chrome y Safari */
    -moz-appearance: none; /* Eliminatilos predeterminados en navegadores Firefox */
    appearance: none; /* Elimina los estilos predeterminados */
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: 50%;
}

select::-ms-expand {
    display: none; /* Elimina la flecha predeterminada en IE */
}

select:focus {
    outline: none; /* Elimina el borde de enfoque */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); /* Añade un sutil efecto de sombra al enfocar */
}
/* Estilos para el pie de página de aclaratoria */
.aclaratoria-footer {
    background-color: #2c2f33; /* Color de fondo oscuro */
    color: #e0e0e0; /* Color del texto */
    padding: 25px 20px;
    margin-top: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.aclaratoria-content {
    max-width: 700px;
    margin: 0 auto;
}

.aclaratoria-content p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.aclaratoria-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.aclaratoria-content li {
    font-size: 0.9em;
}

.aclaratoria-content a {
    color: #ffd700; /* Un color dorado para el enlace */
    text-decoration: none;
    font-weight: bold;
}

.aclaratoria-content a:hover {
    text-decoration: underline;
}

.aclaratoria-content strong {
    color: #fff;
}
