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

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

/* Login */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #e52d27 0%, #b31217 100%);
}

.login-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.login-box h2 {
    color: #e52d27;
    margin-bottom: 10px;
}

.form-group {
    margin: 20px 0;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

button {
    width: 100%;
    padding: 12px;
    background: #e52d27;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: #b31217;
}

.error {
    background: #ffebee;
    color: #c62828;
    padding: 10px;
    border-radius: 5px;
    margin: 15px 0;
}

/* Dashboard */
.dashboard {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.admin-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    color: #999;
    font-size: 20px;
    text-decoration: none;
    z-index: 1000;
}

header {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header h1 {
    color: #e52d27;
    margin: 10px 0;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stat-card h3 {
    font-size: 28px;  /* Era 36px */
    color: #e52d27;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 14px;  /* Agregar esto */
    color: #666;
}

.table-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.table-container h2 {
    margin-bottom: 20px;
    color: #333;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background: #e52d27;
    color: white;
    padding: 12px;
    text-align: left;
}

td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

tr:hover {
    background: #f5f5f5;
}
/* Admin Panel */
.admin-panel {
    min-height: 100vh;
    background: #f5f5f5;
}

.admin-panel header {
    background: #e52d27;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.upload-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.upload-section h2 {
    margin-bottom: 20px;
}

.upload-section input[type="file"] {
    margin-right: 10px;
    padding: 10px;
}

.usuarios-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.usuarios-section h2 {
    margin-bottom: 20px;
}

/* Formulario */
.formulario-container {
    background: #f5f5f5;
    min-height: 100vh;
    padding-bottom: 40px;
}

.formulario-container header {
    background: #e52d27;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-logout {
    background: white;
    color: #e52d27;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.form-evaluacion {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.section h2 {
    color: #e52d27;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e52d27;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.form-group textarea {
    resize: vertical;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.btn-submit {
    background: #e52d27;
    color: white;
    padding: 15px 40px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.btn-submit:hover {
    background: #b31217;
}

/* Notificaciones */
@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.badge-success {
    background: #4caf50;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .formulario-container header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    table {
        font-size: 12px;
    }
    
    th, td {
        padding: 8px;
    }
}

/* Evaluaciones Admin */
.evaluaciones-lista {
    max-width: 1200px;
}

.evaluacion-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.eval-header h3 {
    color: #e52d27;
    margin: 0;
    font-size: 22px;
}

.eval-fecha {
    color: #666;
    font-size: 14px;
}

.eval-section {
    margin: 25px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.eval-section h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 16px;
}

.eval-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.eval-item {
    display: flex;
    flex-direction: column;
}

.eval-item strong {
    color: #666;
    font-size: 13px;
    margin-bottom: 5px;
}

.eval-item span {
    color: #333;
    font-size: 15px;
}

.eval-item span.highlight {
    color: #e52d27;
    font-weight: bold;
    font-size: 18px;
}

.eval-item-full {
    margin-bottom: 15px;
}

.eval-item-full strong {
    color: #666;
    font-size: 13px;
    display: block;
    margin-bottom: 5px;
}

.eval-item-full p {
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.eval-actions {
    margin-top: 20px;
    text-align: right;
}

.btn-export {
    background: #4caf50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.btn-export:hover {
    background: #45a049;
}

.btn-ver-evaluaciones {
    display: inline-block;
    background: #4caf50;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
}

.btn-ver-evaluaciones:hover {
    background: #45a049;
}

.evaluaciones-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.btn-ver-eval {
    display: none;
    background: #2196F3;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
}

.btn-ver-eval:hover {
    background: #1976D2;
}

.badge-activo {
    background: #4caf50;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.badge-inactivo {
    background: #999;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

/* Tabla de Instituciones Mejorada */
.table-responsive {
    overflow-x: auto;
}

.tabla-instituciones {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 14px;
}

.tabla-instituciones thead {
    background: linear-gradient(135deg, #e52d27 0%, #b31217 100%);
}

.tabla-instituciones th {
    color: white;
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
}

.tabla-instituciones td {
    padding: 15px 12px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.tabla-instituciones tbody tr:hover {
    background: #f8f9fa;
    transition: background 0.2s;
}

.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 13px;
}

.contacto-info div {
    color: #666;
}

.btn-ver-eval {
    display: none;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(33, 150, 243, 0.3);
}

.btn-ver-eval:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(33, 150, 243, 0.4);
}

.badge-activo {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.badge-inactivo {
    background: linear-gradient(135deg, #9e9e9e 0%, #757575 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

/* Responsive para tabla */
@media (max-width: 1200px) {
    .tabla-instituciones {
        font-size: 12px;
    }
    
    .tabla-instituciones th,
    .tabla-instituciones td {
        padding: 10px 8px;
    }
}

@media (max-width: 768px) {
    .tabla-instituciones thead {
        display: none;
    }
    
    .tabla-instituciones tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 15px;
    }
    
    .tabla-instituciones td {
        display: block;
        text-align: left;
        padding: 8px 0;
        border: none;
    }
    
    .tabla-instituciones td:before {
        content: attr(data-label);
        font-weight: bold;
        display: inline-block;
        width: 120px;
        color: #e52d27;
    }
}

.td-center {
    text-align: center;
}

.tabla-instituciones td strong {
    color: #333;
    text-transform: capitalize;
}

.contacto-info div {
    color: #666;
    text-transform: lowercase;
}

/* Arreglar formato de nombres */
.tabla-instituciones td:nth-child(1),
.tabla-instituciones td:nth-child(2) {
    text-transform: capitalize;
}

/* Detalle de Evaluación Mejorado */
.evaluacion-detalle {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.eval-header-principal {
    background: linear-gradient(135deg, #e52d27 0%, #b31217 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(229, 45, 39, 0.3);
}

.eval-header-principal h1 {
    margin: 0;
    font-size: 28px;
}

.fecha-eval {
    margin: 10px 0 0 0;
    opacity: 0.9;
    font-size: 16px;
}

.logo-print {
    display: none;
}

@media print {
    .logo-print {
        display: block;
    }
}

.info-general {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.info-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item .icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item label {
    display: block;
    color: #666;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.info-item p {
    margin: 0;
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

.seccion-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    overflow: hidden;
}

.seccion-header {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    padding: 20px 30px;
    border-bottom: 3px solid #e52d27;
}

.seccion-header h2 {
    margin: 0;
    color: #333;
    font-size: 20px;
}

.seccion-content {
    padding: 30px;
}

.tiempos-principales {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.tiempo-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #dee2e6;
}

.tiempo-card.highlight {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-color: #2196F3;
}

.tiempo-card.total {
    background: linear-gradient(135deg, #e52d27 0%, #b31217 100%);
    color: white;
    border: none;
}

.tiempo-card label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0.8;
}

.tiempo-card.total label {
    color: white;
}

.tiempo-valor {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.tiempo-card.total .tiempo-valor-grande {
    font-size: 36px;
    font-weight: bold;
    color: white;
}

.tiempos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.tiempo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #e52d27;
}

.tiempo-item label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.tiempo-item span {
    font-size: 18px;
    font-weight: bold;
    color: #e52d27;
}

.personas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.persona-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.icon-persona {
    font-size: 40px;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.persona-item label {
    display: block;
    font-size: 12px;
    color: #666;
    font-weight: 600;
    margin-bottom: 5px;
}

.persona-item p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.numero-grande {
    font-size: 28px !important;
    font-weight: bold !important;
    color: #e52d27 !important;
}

.alerta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.alerta-box {
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.alerta-box.success {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
}

.alerta-box.warning {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
}

.alerta-box h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
}

.alerta-box .status {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
}

.detalle-alerta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.detalle-item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.detalle-item label {
    display: block;
    font-size: 13px;
    color: #666;
    font-weight: 600;
    margin-bottom: 8px;
}

.detalle-item p {
    margin: 0;
    font-size: 15px;
    color: #333;
}

.observacion-box {
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 5px solid;
}

.observacion-box.positivo {
    background: #e8f5e9;
    border-color: #4caf50;
}

.observacion-box.mejorar {
    background: #fff3e0;
    border-color: #ff9800;
}

.observacion-box.recomendacion {
    background: #e3f2fd;
    border-color: #2196F3;
}

.observacion-box h4 {
    margin: 0 0 15px 0;
    font-size: 16px;
    color: #333;
}

.observacion-box p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

.btn-print {
    background: white;
    color: #e52d27;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
}

.btn-print:hover {
    background: #f5f5f5;
}

/* Formulario Multipaso */
.formulario-multipaso {
    background: #f5f7fa;
    min-height: 100vh;
    padding-bottom: 50px;
}

.form-header {
    background: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.form-header h1 {
    margin: 0;
    font-size: 20px;
    color: #2c3e50;
}

.form-header p {
    margin: 5px 0 0 0;
    font-size: 13px;
    color: #7f8c8d;
}

.btn-logout-form {
    background: #e52d27;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.btn-logout-form:hover {
    background: #c41f1a;
}

/* Barra de progreso */
.progress-container {
    background: white;
    padding: 20px 30px;
    border-bottom: 1px solid #ecf0f1;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #ecf0f1;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #e52d27 0%, #ff6b6b 100%);
    width: 6.67%;
    transition: width 0.3s ease;
}

.progress-text {
    text-align: center;
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 500;
    margin: 0;
}

/* Pasos del formulario */
.form-step {
    display: none;
    max-width: 1000px;
    margin: 30px auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

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

.step-title {
    margin: 0 0 30px 0;
    font-size: 24px;
    color: #2c3e50;
    padding-bottom: 15px;
    border-bottom: 3px solid #e52d27;
    font-weight: 600;
}

.subsection-title {
    margin: 25px 0 20px 0;
    font-size: 18px;
    color: #34495e;
    font-weight: 600;
    padding-left: 10px;
    border-left: 4px solid #3498db;
}

/* Grid del formulario */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #dce4ec;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e52d27;
}

.form-group input[readonly] {
    background: #f8f9fa;
    color: #7f8c8d;
    cursor: not-allowed;
}

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

/* Campos calculados */
.calc-field {
    background: #fff3cd !important;
    border-color: #ffc107 !important;
    font-weight: 600;
    color: #856404;
}

/* Info box */
.tiempo-info-box {
    background: #e3f2fd;
    border-left: 4px solid #2196F3;
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 4px;
}

.tiempo-info-box p {
    margin: 0;
    color: #1565c0;
    font-size: 14px;
}

/* Navegación */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #ecf0f1;
}

.btn-prev,
.btn-next,
.btn-submit {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-prev {
    background: #ecf0f1;
    color: #2c3e50;
}

.btn-prev:hover {
    background: #d5dbdb;
}

.btn-next {
    background: #3498db;
    color: white;
}

.btn-next:hover {
    background: #2980b9;
}

.btn-submit {
    background: #27ae60;
    color: white;
    width: 100%;
}

.btn-submit:hover {
    background: #229954;
}

.btn-submit:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .form-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .form-step {
        padding: 25px 20px;
        margin: 20px 10px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-prev,
    .btn-next {
        width: 100%;
    }
}

/* Mejoras visuales adicionales */
select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    opacity: 1;
}

.highlight-time {
    font-weight: bold !important;
    color: #e52d27 !important;
    font-size: 16px !important;
}

.badge-warning {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.badge-info {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.badge-default {
    background: linear-gradient(135deg, #9e9e9e 0%, #757575 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}