/* Estilos para el sistema de quejas */
body.dashboard {
    background: 
        url('../css/img/fondo.png') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    position: relative;
}

/* Select y textarea */
select, textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    font-family: inherit;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* Badges de estado */
.status-badge.baja {
    background: #27ae60;
    color: white;
}

.status-badge.media {
    background: #f39c12;
    color: white;
}

.status-badge.alta {
    background: #e67e22;
    color: white;
}

.status-badge.urgente {
    background: #e74c3c;
    color: white;
}

.status-badge.pendiente {
    background: #e74c3c;
    color: white;
}

.status-badge.en_proceso {
    background: #f39c12;
    color: white;
}

.status-badge.resuelto {
    background: #27ae60;
    color: white;
}

/* Mejoras para tablas */
.data-table {
    font-size: 0.9rem;
}

.data-table th {
    background: #2c3e50;
    position: sticky;
    top: 0;
}

/* Form sections */
.form-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Alertas */
.alert.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Responsive para tablas */
@media (max-width: 768px) {
    .data-table {
        font-size: 0.8rem;
    }
    
    .data-table th,
    .data-table td {
        padding: 6px 8px;
    }
}





/* Alertas */
.alert {
    padding: 12px 15px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    border: 1px solid transparent;
    animation: slideIn 0.3s ease;
}

.alert.error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

/* Animaciones */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px) scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

@keyframes slideIn {
    from { 
        opacity: 0; 
        transform: translateX(-20px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

/* Efecto de carga para el botón */
.btn-login.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-login.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Recordar usuario (opcional para futuras implementaciones) */
.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.remember-me input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Enlace de recuperación de contraseña (opcional) */
.forgot-password {
    text-align: center;
    margin-top: 1rem;
}

.forgot-password a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-password a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */

/* Tablets */
@media (max-width: 1024px) {
    .login-wrapper {
        gap: 30px;
        max-width: 900px;
    }
    
    .gif-container {
        max-width: 400px;
    }
}

/* Tablets pequeñas */
@media (max-width: 768px) {
    .login-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 10px;
    }
    
    .login-container {
        max-width: 100%;
        padding: 2rem;
        order: 2;
    }
    
    .gif-container {
        max-width: 100%;
        order: 1;
        max-height: 200px;
    }
    
    .login-gif {
        height: 200px;
        object-fit: cover;
    }
}

/* Móviles */
@media (max-width: 480px) {
    .login-wrapper {
        margin: 10px auto;
        padding: 10px;
    }
    
    .login-container {
        padding: 1.5rem;
    }
    
    .login-container h1 {
        font-size: 1.5rem;
    }
    
    .login-container h2 {
        font-size: 1.1rem;
    }
    
    .form-group input {
        padding: 10px 12px;
    }
    
    .btn-login {
        padding: 10px 20px;
        font-size: 15px;
    }
    
    .gif-container {
        max-height: 150px;
    }
    
    .login-gif {
        height: 150px;
    }
}

/* Pantallas muy grandes */
@media (min-width: 1440px) {
    .login-wrapper {
        max-width: 1200px;
    }
    
    .login-container {
        max-width: 450px;
        padding: 3rem;
    }
    
    .gif-container {
        max-width: 500px;
    }
}

/* Modo oscuro (opcional) */
@media (prefers-color-scheme: dark) {
    .login-container {
        background: rgba(44, 62, 80, 0.95);
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .login-container h1 {
        color: white;
    }
    
    .form-group label {
        color: #ecf0f1;
    }
    
    .form-group input {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
        color: rgb(19, 2, 41);
    }
    
    .form-group input:focus {
        border-color: #3498db;
        background: rgba(255, 255, 255, 0.15);
    }
    
    .form-group input::placeholder {
        color: #bdc3c7;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .login-container {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Impresión */
@media print {
    .login-wrapper {
        display: block;
    }
    
    .gif-container {
        display: none;
    }
    
    .login-container {
        box-shadow: none;
        background: white;
        color: black;
    }
}

/* Accesibilidad - reducir movimiento */
@media (prefers-reduced-motion: reduce) {
    .login-container,
    .gif-container,
    .btn-login {
        animation: none;
        transition: none;
    }
    
    .btn-login::before {
        display: none;
    }
}

/* Estados de focus para accesibilidad */
.btn-login:focus {
    outline: 3px solid rgba(52, 152, 219, 0.5);
    outline-offset: 2px;
}

.form-group input:focus {
    outline: 3px solid rgba(52, 152, 219, 0.3);
    outline-offset: 1px;
}


/* ===== HEADER ESPECÍFICO PARA NUEVA QUEJA ===== */

/* Header específico para páginas de formularios */
body.ticket header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 1rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 3px solid #3498db;
}

body.ticket header h1 {
    margin: 0;
    font-size: 1.4rem;
    display: inline-block;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Navegación específica para formularios */
body.ticket nav {
    display: inline-block;
    margin-left: 2.5rem;
}

body.ticket nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    margin-right: 1.8rem;
    padding: 0.6rem 0;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    font-size: 0.95rem;
}

body.ticket nav a:hover {
    color: #3498db;
    transform: translateY(-2px);
}

body.ticket nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

body.ticket nav a:hover::after {
    width: 100%;
}

/* Información del usuario en formularios */
body.ticket .user-info {
    float: right;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

body.ticket .user-info:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Badge de rol */
.role-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.role-badge.admin {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.role-badge.usuario {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

/* ===== CONTENEDOR PRINCIPAL MÁS GRANDE ===== */

body.ticket main {
    padding: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    background: url('../img/fondo.jpg') no-repeat center center/cover;
    min-height: calc(100vh - 80px);
}

body.ticket .container {
    max-width: 95%;
    margin: 0 auto;
}

body.ticket .form-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.12),
        0 8px 25px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

/* Título del formulario */
body.ticket .ticket-title {
    color: #2c3e50 !important;
    text-shadow: 
        0 2px 4px rgba(0,0,0,0.1),
        0 4px 8px rgba(0,0,0,0.05);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0 0 3rem 0;
    padding: 2rem 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    border-left: 6px solid #3498db;
    font-size: 1.8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

body.ticket .ticket-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transition: left 0.6s ease;
}

body.ticket .ticket-title:hover::before {
    left: 100%;
}

/* ===== ESTILOS ADICIONALES PARA NUEVA QUEJA ===== */

/* Encabezados de sección del formulario */
.form-section-header {
    margin: 2.5rem 0 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border-left: 4px solid #3498db;
    position: relative;
    overflow: hidden;
}

.form-section-header:first-child {
    margin-top: 0;
}

.form-section-header h3 {
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section-header h3 i {
    color: #3498db;
    font-size: 1.1em;
}

.section-description {
    color: #7f8c8d;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Layout de columnas para formularios */
.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0;
}

.form-col-6 {
    flex: 1;
    min-width: 0;
}

/* Indicadores y hints */
.input-hint {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-top: 0.3rem;
    font-style: italic;
}

.char-counter {
    position: absolute;
    bottom: -20px;
    right: 0;
    font-size: 0.75rem;
    color: #7f8c8d;
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Estados de validación */
input:valid:not(:placeholder-shown) {
    border-color: #27ae60 !important;
}

input:invalid:not(:placeholder-shown) {
    border-color: #e74c3c !important;
}

/* Grupo de botones mejorado */
.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #ecf0f1;
    justify-content: flex-start;
}

/* Efectos específicos para los nuevos campos */
#agencia_id {
    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='%232c3e50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3e%3c/path%3e%3ccircle cx='12' cy='10' r='3'%3e%3c/circle%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

#persona_cedula {
    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='%232c3e50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3e%3c/path%3e%3cpolyline points='22,6 12,13 2,6'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

#persona_nombre {
    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='%232c3e50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'%3e%3c/path%3e%3ccircle cx='12' cy='7' r='4'%3e%3c/circle%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

/* Iconos específicos para las nuevas etiquetas */
.form-group label[for="agencia_id"]::before {
    content: '🏢 ';
}

.form-group label[for="persona_cedula"]::before {
    content: '🆔 ';
}

.form-group label[for="persona_nombre"]::before {
    content: '👤 ';
}

/* ===== RESPONSIVE PARA HEADER Y FORMULARIO ===== */

@media (max-width: 1024px) {
    body.ticket header {
        padding: 1rem 1.5rem;
    }
    
    body.ticket nav {
        margin-left: 1.5rem;
    }
    
    body.ticket nav a {
        margin-right: 1.2rem;
        font-size: 0.9rem;
    }
    
    body.ticket main {
        padding: 2rem 1.5rem;
    }
    
    body.ticket .form-section {
        padding: 2.5rem;
    }
    
    body.ticket .ticket-title {
        padding: 1.8rem 2.5rem;
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    body.ticket header {
        text-align: center;
        padding: 1rem;
    }
    
    body.ticket header h1 {
        display: block;
        margin-bottom: 0.8rem;
        font-size: 1.2rem;
    }
    
    body.ticket nav {
        display: block;
        margin-left: 0;
        margin-bottom: 0.8rem;
    }
    
    body.ticket nav a {
        display: inline-block;
        margin: 0 0.5rem 0.5rem;
        font-size: 0.85rem;
    }
    
    body.ticket .user-info {
        float: none;
        display: inline-block;
        margin-top: 0.5rem;
    }
    
    body.ticket main {
        padding: 1.5rem 1rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-col-6 {
        width: 100%;
    }
    
    .form-section-header {
        padding: 1.2rem;
        margin: 2rem 0 1rem 0;
    }
    
    .form-section-header h3 {
        font-size: 1.1rem;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    .button-group .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body.ticket .container {
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    body.ticket .form-section {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    body.ticket .ticket-title {
        padding: 1.2rem 1.5rem;
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
    
    .form-section-header {
        padding: 1rem;
    }
    
    .form-section-header h3 {
        font-size: 1rem;
    }
    
    .section-description {
        font-size: 0.85rem;
    }
}

/* Animaciones para las nuevas secciones */
.form-section-header {
    animation: slideInUp 0.5s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efectos de transición para los nuevos campos */
.form-group input:focus,
.form-group select:focus {
    transform: translateY(-1px);
    transition: all 0.3s ease;
}






/* ===== ESTILOS PARA GESTIÓN DE USUARIOS ===== */

/* Formularios de usuario */
.user-form {
    margin-top: 1rem;
}

/* Badge "Tú" para el usuario actual */
.you-badge {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 0.5rem;
    animation: pulse 2s infinite;
}

/* Estados de usuario */
.status-badge.activo {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
}

.status-badge.inactivo {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    color: white;
}

/* Checkbox personalizado */
.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

.checkbox input[type="checkbox"] {
    width: auto;
    transform: scale(1.2);
}

/* Modal específico para usuarios */
.modal-content h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-content h3 i {
    color: #3498db;
}

/* Responsive para gestión de usuarios */
@media (max-width: 768px) {
    .user-form .form-col-4,
    .user-form .form-col-3 {
        width: 100%;
    }
    
    .actions {
        flex-direction: column;
    }
    
    .btn-action {
        min-width: auto;
        padding: 0.4rem 0.8rem;
    }
}


/* ===== ESTILOS PARA MODAL DE DETALLES ===== */

.modal-lg {
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

.detalles-content {
    padding: 1rem 0;
}

.loading-details, .error-details, .no-historial, .error-historial {
    text-align: center;
    padding: 3rem 2rem;
    color: #7f8c8d;
}

.loading-details i, .error-details i, .no-historial i, .error-historial i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.error-details i, .error-historial i {
    color: #e74c3c;
}

.no-historial i {
    color: #f39c12;
}

/* Grid de detalles */
.detalles-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detalle-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #3498db;
}

.detalle-section h4 {
    margin: 0 0 1rem 0;
    color: #2c3e50;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detalle-section h4 i {
    color: #3498db;
}

.detalle-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.detalle-row:last-child {
    margin-bottom: 0;
}

.detalle-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.detalle-item.full-width {
    flex: 0 0 100%;
}

.detalle-item label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.detalle-item span {
    color: #34495e;
    font-size: 0.95rem;
}

.codigo-seguimiento {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: #2c3e50;
    background: #ecf0f1;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    display: inline-block;
}

.titulo-queja {
    font-size: 1.1rem !important;
    font-weight: 600;
    color: #2c3e50 !important;
    line-height: 1.4;
}

.descripcion-texto {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    line-height: 1.6;
    white-space: pre-wrap;
    max-height: 200px;
    overflow-y: auto;
}

/* Timeline del historial */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0.6rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #3498db;
}

.timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item.current .timeline-marker {
    background: #27ae60;
    border-color: #27ae60;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0.3rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #3498db;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #3498db;
}

.timeline-content {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ecf0f1;
}

.timeline-user {
    font-weight: 600;
    color: #2c3e50;
}

.timeline-date {
    font-size: 0.8rem;
    color: #7f8c8d;
}

.timeline-action {
    font-weight: 600;
    color: #3498db;
    margin-bottom: 0.3rem;
}

.timeline-description {
    color: #34495e;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.timeline-state-change {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 0.9rem;
}

.state-old {
    color: #e74c3c;
    font-weight: 600;
}

.state-new {
    color: #27ae60;
    font-weight: 600;
}

.timeline-state-change i {
    color: #7f8c8d;
}

/* Responsive para detalles */
@media (max-width: 768px) {
    .modal-lg {
        width: 95%;
        margin: 5% auto;
    }
    
    .detalle-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-marker {
        left: -1.5rem;
    }
    
    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
}