body {
    font-family: Arial, sans-serif;
}

form {
    width: 80%;
    margin: 0 auto;
    background: #f1f1f1;
    padding: 20px;
    border-radius: 8px;
    font-size: 22px;
}

.form-question {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}

select, .radio-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.radio-buttons {
    display: flex;
    justify-content: space-between;
}

button {
    width: 20%;
    height: 60px;
    padding: 3px;
    background-color: #4285f4; /* Color principal del botón */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 6px;
    transition: background-color 0.3s; /* Transición suave para cambios de color */
}

button:disabled {
    background-color: #a0c4ff; /* Color más claro para el estado deshabilitado */
    cursor: not-allowed; /* Cambia el cursor para indicar que el botón está deshabilitado */
    color: #ffffffb3; /* Color de texto más claro para el estado deshabilitado */
}

button:hover {
    background-color: #357ae8;
}
/* Add this to your existing CSS 
#discoveryOptions {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
}

#discoveryOptions label {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

#discoveryOptions input[type="radio"] {
    margin-right: 5px;
}
*/
.mqradio {
    margin-top: 10px;
    width: 20px;
    height: 20px;
    align-self: bottom;
}
.sel-line {
    display: flex;
    flex-direction: row;
    align-items: flex-start; /* Align items to the left */
    margin: 6px;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    /* max-width: 400px;*/
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    font-size: 22px; /* Default font size for larger screens */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    text-align: center;
}

/* Increase font size on screens smaller than 600px */
@media screen and (max-width: 1500px) {
    .modal-content {
        font-size: 28px; /* Larger font size for mobile devices */
    }
    form {
        font-size: 30px;
    }
}

/*
@media  screen and (max-width: 769px) {
    form {
        width: 100%;
        background: #f10000;
    }
}

@media screen and (min-width: 769px) {
    form {
        width: 50%;
        margin: 0 auto;
        background: #f1f1f1;
        padding: 20px;
        border-radius: 8px;
        font-size: 22px;
    }
}
*/
