#premios-ava-form-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.premios-ava-steps-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
}

.step-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
    transition: all 0.3s ease;
}

.step-indicator.active {
    background: #0073aa;
    color: #fff;
}

.step-indicator.completed {
    background: #46b450;
    color: #fff;
}

.form-step {
    display: none;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    font-size: 1.2em;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

.form-step label {
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
    color: #444;
}

.form-step input[type="text"],
.form-step input[type="email"],
.form-step input[type="tel"],
.form-step input[type="url"],
.form-step textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-step textarea {
    min-height: 80px;
    resize: vertical;
}

.form-step input:focus,
.form-step textarea:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0,115,170,0.2);
}

.radio-group {
    margin: 10px 0;
}

.radio-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: normal;
    cursor: pointer;
}

.radio-group input[type="radio"] {
    margin-right: 8px;
}

.premios-ava-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 10px;
}

.premios-ava-navigation button {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-step-prev,
.btn-save-draft {
    background: #f0f0f0;
    color: #333;
}

.btn-step-prev:hover,
.btn-save-draft:hover {
    background: #e0e0e0;
}

.btn-step-next,
.btn-submit-form {
    background: #0073aa;
    color: #fff;
}

.btn-step-next:hover,
.btn-submit-form:hover {
    background: #005177;
}

.premios-ava-messages {
    margin-top: 15px;
}

.premios-ava-messages .success {
    padding: 12px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    color: #155724;
}

.premios-ava-messages .error {
    padding: 12px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    color: #721c24;
}

.premios-ava-messages .loading {
    padding: 12px;
    background: #cce5ff;
    border: 1px solid #b8daff;
    border-radius: 4px;
    color: #004085;
}

.validation-error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

.form-step.has-error input,
.form-step.has-error textarea {
    border-color: #dc3545;
}

.form-step.has-error .validation-error {
    display: block;
}

/* Conditional fields */
#detalle-ods-wrapper,
#detalle-alianzas-wrapper,
#justificacion-medicion-wrapper,
#justificacion-tecnologia-wrapper {
    display: none;
}

#detalle-ods-wrapper.visible,
#detalle-alianzas-wrapper.visible,
#justificacion-medicion-wrapper.visible,
#justificacion-tecnologia-wrapper.visible {
    display: block;
}
