.omi-survey-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.omi-survey-content h1 {
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.omi-encuesta {
    margin-top: 2rem;
}

.omi-pregunta {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #eee;
}

.omi-pregunta-texto {
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.omi-pregunta-texto h3 {
    color: #666;
    margin-bottom: 0.5rem;
}

.omi-pregunta-texto p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.omi-pregunta-texto .required {
    color: #e74c3c;
    margin-left: 0.25rem;
}

.omi-pregunta-opciones {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.omi-opcion {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.omi-opcion:hover {
    background-color: #f0f0f0;
}

.omi-opcion input[type="radio"] {
    margin: 0;
}

.omi-opcion label {
    cursor: pointer;
    flex: 1;
}

textarea {
    width: 100%;
    min-height: 100px;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
}

.omi-pregunta-navegacion {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.omi-prev-pregunta,
.omi-next-pregunta,
.omi-encuesta-submit {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.omi-prev-pregunta {
    background-color: #f0f0f0;
    color: #666;
}

.omi-next-pregunta,
.omi-encuesta-submit {
    background-color: #da291c;
    color: white;
}

.omi-prev-pregunta:hover {
    background-color: #e0e0e0;
}

.omi-next-pregunta:hover,
.omi-encuesta-submit:hover {
    background-color: #b72318;
}

.omi-pregunta.error {
    border-color: #e74c3c;
}

.omi-encuesta-success {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-top: 2rem;
}

.omi-encuesta-success h3 {
    color: #2ecc71;
    margin-bottom: 1rem;
}

.omi-encuesta-success p {
    color: #666;
} 