* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f5f7fa;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 40px;
    animation: fadeIn 0.5s ease-in;
}

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

/* Mensaje de rango de fechas */
.mensaje-rango-fechas {
    max-width: 1000px;
    margin: 20px auto;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mensaje-rango-contenido {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.mensaje-icono {
    font-size: 2em;
    flex-shrink: 0;
}

.mensaje-texto {
    flex: 1;
}

.mensaje-texto strong {
    display: block;
    font-size: 1.1em;
    color: #856404;
    margin-bottom: 8px;
}

.mensaje-texto p {
    color: #856404;
    margin: 0;
    line-height: 1.5;
}

header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 2px solid #e5e7eb;
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: #111827;
    border-radius: 2px;
}

header h1 {
    color: #111827;
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

/* Sección Informativa */
.info-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-content h2 {
    color: #111827;
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-content h3 {
    color: #333;
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
}

.info-content h4 {
    color: #374151;
    font-size: 1.2em;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05em;
}

.info-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
    color: #555;
    line-height: 2;
}

.info-content ul li {
    margin-bottom: 8px;
}

.info-content ul li strong {
    color: #111827;
}

/* Proceso de pasos */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #111827;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #111827;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content strong {
    color: #333;
    font-size: 1.1em;
    display: block;
    margin-bottom: 8px;
}

.step-content p {
    color: #666;
    margin: 0;
    font-size: 1em;
}

/* Cajas de criterios */
.criteria-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid #111827;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.criteria-box h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.criteria-box ul {
    margin-top: 10px;
}

.criteria-box ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.criteria-box ul li:last-child {
    border-bottom: none;
}

/* Nota informativa */
.info-note {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 25px;
    color: #856404;
}

.info-note strong {
    color: #856404;
    display: block;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .info-section {
        padding: 20px;
    }
    
    .info-content h2 {
        font-size: 1.5em;
    }
    
    .info-content h3 {
        font-size: 1.2em;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-bottom: 10px;
    }
}

.form-section {
    margin-bottom: 25px;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-section:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.form-section h2 {
    color: #111827;
    margin-bottom: 18px;
    font-size: 1.4em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h2::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #111827;
    border-radius: 50%;
    display: inline-block;
}

select {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #111827;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23111827' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 45px;
}

select:hover {
    border-color: #9ca3af;
}

select:focus {
    outline: none;
    border-color: #111827;
    box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.1);
}

.radio-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.radio-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 14px 24px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
    flex: 1;
    min-width: 150px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.radio-group label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #111827;
    transition: left 0.3s ease;
    z-index: 0;
}

.radio-group label span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.radio-group label:hover {
    border-color: #9ca3af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.radio-group label:hover::before {
    left: 0;
}

.radio-group label:hover span {
    color: white;
}

.radio-group input[type="radio"] {
    margin-right: 10px;
    width: 22px;
    height: 22px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    accent-color: #111827;
}

.radio-group input[type="radio"]:checked + span {
    color: #111827;
    font-weight: 700;
}

.radio-group input[type="radio"]:checked {
    accent-color: #111827;
}

.item-evaluacion {
    margin-bottom: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 2px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.item-evaluacion:hover {
    border-color: #9ca3af;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.item-evaluacion label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
    font-size: 1.05em;
    line-height: 1.5;
}

.item-evaluacion .ponderacion {
    font-size: 0.85em;
    color: #6b7280;
    font-weight: 600;
    background: #f3f4f6;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
    margin-left: 8px;
}

.radio-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.radio-options label {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0;
    font-weight: 500;
    flex: 1;
    min-width: 100px;
    justify-content: center;
    position: relative;
}

.radio-options label:hover {
    border-color: #9ca3af;
    background: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.radio-options input[type="radio"] {
    margin-right: 8px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #111827;
}

.radio-options input[type="radio"]:checked + span {
    color: #111827;
    font-weight: 700;
}

.radio-options input[type="radio"]:checked {
    accent-color: #111827;
}

.radio-options label.selected {
    border-color: #111827;
    background: #f3f4f6;
    box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.1);
}

.result-box {
    text-align: center;
    padding: 35px 25px;
    background: #111827;
    border-radius: 12px;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.result-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.result-label {
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.result-value {
    font-size: 3.5em;
    font-weight: 700;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.button-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e8e8e8;
}

button {
    flex: 1;
    min-width: 160px;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

button:hover::before {
    width: 300px;
    height: 300px;
}

button span {
    position: relative;
    z-index: 1;
}

button[type="submit"] {
    background: #111827;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

button[type="submit"]:hover {
    background: #1f2937;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

button[type="button"] {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

button[type="button"]:hover {
    background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4);
}

.btn-excel {
    background: #28a745 !important;
    color: white !important;
}

.btn-excel:hover {
    background: #218838 !important;
    transform: translateY(-2px);
}

.btn-email {
    background: #007bff !important;
    color: white !important;
}

.btn-email:hover {
    background: #0056b3 !important;
    transform: translateY(-2px);
}

input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    background: white;
    color: #111827;
}

/* Display de fecha (solo lectura) */
.fecha-display {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #f9fafb;
    color: #111827;
    font-weight: 500;
    text-align: center;
}

.fecha-display span {
    color: #111827;
    font-weight: 600;
}

input[type="email"]:hover {
    border-color: #9ca3af;
}

input[type="email"]:focus {
    outline: none;
    border-color: #111827;
    box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.1);
}

small {
    color: #666;
    font-size: 0.9em;
    margin-top: 8px;
    display: block;
}

.btn-enviar-correo {
    background: #007bff;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
}

.btn-enviar-correo:hover {
    background: #0056b3;
}

.btn-eliminar {
    background: #dc3545;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 10px;
    transition: all 0.3s;
}

.btn-eliminar:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.btn-excel-individual {
    background: #17a2b8;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    text-align: left;
}

.btn-excel-individual:hover {
    background: #138496;
    transform: translateY(-2px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 1000px;
    max-height: 80vh;
    overflow-y: auto;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

#evaluacionesList {
    margin-top: 20px;
}

.evaluacion-item {
    background: #f8f9fa;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid #111827;
}

.evaluacion-item h3 {
    color: #333;
    margin-bottom: 10px;
}

.evaluacion-item p {
    margin: 5px 0;
    color: #666;
}

.evaluacion-item .resultado {
    font-size: 1.5em;
    font-weight: bold;
    color: #111827;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    header h1 {
        font-size: 2em;
    }

    .radio-group {
        flex-direction: column;
    }

    .button-group {
        flex-direction: column;
    }

    button {
        width: 100%;
    }
}

/* Estilos para calendario picker */
.calendario-picker {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 5px;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 1000;
    min-width: 320px;
    animation: slideDown 0.2s ease-out;
}

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

.calendario-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.calendario-nav-btn {
    background: #111827;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.calendario-nav-btn:hover {
    background: #1f2937;
    transform: scale(1.1);
}

.calendario-dias-semana {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.calendario-dias-semana div {
    text-align: center;
    font-weight: 600;
    color: #111827;
    padding: 8px;
    font-size: 0.9rem;
}

.calendario-dias {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendario-dia {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
    background: white;
    color: #333;
}

.calendario-dia:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
    transform: scale(1.1);
}

.calendario-dia.selected {
    background: #111827;
    color: white;
    border-color: #111827;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.calendario-dia.otro-mes {
    color: #ccc;
    opacity: 0.5;
}

.calendario-dia.hoy {
    border-color: #28a745;
    font-weight: 800;
}

/* Modal de éxito personalizado */
.success-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease-in;
    align-items: center;
    justify-content: center;
}

.success-modal.show {
    display: flex;
}

.success-modal-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
    position: relative;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.4s ease-out 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-icon svg {
    width: 48px;
    height: 48px;
    color: white;
    stroke-width: 3;
}

.success-modal-content h2 {
    color: #111827;
    font-size: 1.75em;
    font-weight: 700;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
}

.success-modal-content p {
    color: #6b7280;
    font-size: 1.1em;
    margin: 0 0 32px 0;
    line-height: 1.6;
}

.success-btn {
    background: #111827;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    width: 100%;
    max-width: 200px;
}

.success-btn:hover {
    background: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.success-btn:active {
    transform: translateY(0);
}

/* Sistema de Pasos */
.form-step {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.form-step.active {
    display: block;
}

.progress-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.progress-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.progress-step::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 60%;
    width: 100%;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
}

.progress-step:last-child::after {
    display: none;
}

.progress-step.active {
    opacity: 1;
}

.progress-step.completed {
    opacity: 1;
}

.progress-step.completed::after {
    background: #111827;
}

.progress-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1em;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.progress-step.active .progress-step-number {
    background: #111827;
    color: white;
}

.progress-step.completed .progress-step-number {
    background: #111827;
    color: white;
}

.progress-step-label {
    margin-top: 8px;
    font-size: 0.85em;
    color: #6b7280;
    font-weight: 500;
    text-align: center;
}

.progress-step.active .progress-step-label {
    color: #111827;
    font-weight: 600;
}

.step-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.step-navigation:has(.btn-prev) {
    justify-content: space-between;
}

.btn-prev,
.btn-next,
.btn-save,
.btn-clear {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.btn-prev {
    background: #6b7280;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-prev:hover {
    background: #4b5563;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-next {
    background: #111827;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-left: auto;
}

.btn-next:hover {
    background: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-save {
    background: #111827;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-save:hover {
    background: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-clear {
    background: #dc2626;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-clear:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .progress-indicator {
        padding: 15px 10px;
    }
    
    .progress-step-label {
        font-size: 0.75em;
    }
    
    .progress-step-number {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }
    
    .step-navigation {
        flex-direction: column;
    }
    
    .btn-prev,
    .btn-next,
    .btn-save,
    .btn-clear {
        width: 100%;
    }
}

