    .employee-info {
        flex: 1;
    }
    .employee-name {
        font-weight: bold;
        font-size: 1.1rem;
        color: #333;
        margin-bottom: 5px;
    }
    .employee-details {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        font-size: 0.9rem;
        color: #666;
    }
    .employee-details span {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .employee-branch {
        color: #007bff;
    }
    .employee-salary {
        color: #28a745;
        font-weight: 600;
    }
    .employee-date {
        color: #6c757d;
    }
    
    /* SISTEMA DE NOTIFICACIONES CON COLORES MEJORADOS */
    #notification-container {
        position: fixed !important;
        top: 20px !important;
        right: 20px !important;
        z-index: 99999 !important;
        pointer-events: none !important;
        max-width: 400px;
        width: auto;
    }
    
    .notification {
        display: flex;
        align-items: center;
        padding: 16px 20px;
        margin-bottom: 12px;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.4;
        opacity: 0;
        transform: translateX(100%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: auto !important;
        position: relative;
        overflow: hidden;
        min-width: 320px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .notification.show {
        opacity: 1;
        transform: translateX(0);
    }
    
    .notification-icon {
        font-size: 20px;
        margin-right: 12px;
        flex-shrink: 0;
    }
    
    .notification-content {
        flex: 1;
        color: inherit;
    }
    
    .notification-title {
        font-weight: 600;
        margin-bottom: 2px;
        font-size: 15px;
    }
    
    .notification-message {
        opacity: 0.9;
    }
    
    .notification-close {
        background: none;
        border: none;
        font-size: 18px;
        cursor: pointer;
        padding: 8px;
        margin-left: 8px;
        opacity: 0.7;
        transition: all 0.2s ease;
        color: inherit;
        flex-shrink: 0;
        min-width: 32px;
        min-height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
    
    .notification-close:hover,
    .notification-close:focus {
        opacity: 1;
        background: rgba(255, 255, 255, 0.1);
        transform: scale(1.1);
    }
    
    .notification-progress {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 3px;
        background: rgba(255, 255, 255, 0.4);
        transition: width 3.5s linear;
        width: 100%;
        border-radius: 0 0 12px 12px;
    }
    
    /* COLORES MODERNOS PARA NOTIFICACIONES */
    
    /* ÉXITO - Verde moderno con gradiente */
    .notification.success {
        background: linear-gradient(135deg, #10B981 0%, #059669 100%);
        color: #ffffff;
        border-left: 4px solid #065F46;
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    }
    
    .notification.success .notification-icon {
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    }
    
    .notification.success .notification-progress {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 100%);
        animation: progress-glow 3.5s linear forwards;
    }
    
    /* ERROR - Rojo moderno con gradiente */
    .notification.error {
        background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
        color: #ffffff;
        border-left: 4px solid #991B1B;
        box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
    }
    
    .notification.error .notification-icon {
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    }
    
    .notification.error .notification-progress {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 100%);
        animation: progress-glow 3.5s linear forwards;
    }
    
    /* ADVERTENCIA - Ámbar moderno con gradiente */
    .notification.warning {
        background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
        color: #ffffff;
        border-left: 4px solid #92400E;
        box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    }
    
    .notification.warning .notification-icon {
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    }
    
    .notification.warning .notification-progress {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 100%);
        animation: progress-glow 3.5s linear forwards;
    }
    
    /* INFORMACIÓN - Azul moderno con gradiente */
    .notification.info {
        background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
        color: #ffffff;
        border-left: 4px solid #1D4ED8;
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    }
    
    .notification.info .notification-icon {
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    }
    
    .notification.info .notification-progress {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 100%);
        animation: progress-glow 3.5s linear forwards;
    }
    
    /* ANIMACIÓN BRILLANTE PARA LA BARRA DE PROGRESO */
    @keyframes progress-glow {
        from {
            width: 100%;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }
        to {
            width: 0%;
            box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
        }
    }
    
    /* EFECTOS HOVER MEJORADOS */
    .notification:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    }
    
    .notification.success:hover {
        box-shadow: 0 12px 35px rgba(16, 185, 129, 0.5);
    }
    
    .notification.error:hover {
        box-shadow: 0 12px 35px rgba(239, 68, 68, 0.5);
    }
    
    .notification.warning:hover {
        box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
    }
    
    .notification.info:hover {
        box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
    }
    
    /* ANIMACIONES ADICIONALES */
    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(100%);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes pulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
    }
    
    .notification.pulse {
        animation: pulse 0.6s ease-in-out;
    }
    
    /* RESPONSIVE PARA TABLET */
    @media screen and (min-width: 768px) and (max-width: 1024px) {
        #notification-container {
            top: 30px;
            right: 30px;
            max-width: 450px;
        }
        
        .notification {
            padding: 18px 22px;
            margin-bottom: 15px;
            font-size: 15px;
            min-width: 350px;
        }
        
        .notification-icon {
            font-size: 22px;
            margin-right: 15px;
        }
        
        .notification-title {
            font-size: 16px;
        }
        
        .notification-close {
            font-size: 20px;
            padding: 10px;
            min-width: 36px;
            min-height: 36px;
        }
    }
    
    /* MÓVIL */
    @media (max-width: 767px) {
        #notification-container {
            top: 15px;
            right: 15px;
            left: 15px;
            max-width: none;
        }
        
        .notification {
            margin-bottom: 10px;
            padding: 14px 16px;
            font-size: 13px;
            min-width: auto;
            border-radius: 10px;
        }
        
        .notification-icon {
            font-size: 18px;
            margin-right: 10px;
        }
        
        .notification-title {
            font-size: 14px;
        }
        
        .notification-close {
            font-size: 16px;
            padding: 6px;
            min-width: 28px;
            min-height: 28px;
        }
    }
    
    /* VERSIONES LIGHT (OPCIONAL) */
    .notification.success-light {
        background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
        color: #065F46;
        border: 1px solid #10B981;
        border-left: 4px solid #059669;
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
    }
    
    .notification.error-light {
        background: linear-gradient(135deg, #FEF2F2 0%, #FECACA 100%);
        color: #991B1B;
        border: 1px solid #EF4444;
        border-left: 4px solid #DC2626;
        box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
    }
    
    .notification.warning-light {
        background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
        color: #92400E;
        border: 1px solid #F59E0B;
        border-left: 4px solid #D97706;
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
    }
    
    .notification.info-light {
        background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
        color: #1E40AF;
        border: 1px solid #3B82F6;
        border-left: 4px solid #2563EB;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    }
    
    /* EFECTOS ESPECIALES */
    .notification.shake {
        animation: shake 0.5s ease-in-out;
    }
    
    @keyframes shake {
        0%, 100% { transform: translateX(0); }
        10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
        20%, 40%, 60%, 80% { transform: translateX(5px); }
    }
    
    .notification.bounce {
        animation: bounce 0.6s ease-in-out;
    }
    
    @keyframes bounce {
        0%, 20%, 60%, 100% { transform: translateY(0); }
        40% { transform: translateY(-10px); }
        80% { transform: translateY(-5px); }
    }
    
    /* MODO OSCURO (OPCIONAL) */
    @media (prefers-color-scheme: dark) {
        .notification {
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .notification.success {
            background: linear-gradient(135deg, #047857 0%, #065F46 100%);
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
        }
        
        .notification.error {
            background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
            box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
        }
        
        .notification.warning {
            background: linear-gradient(135deg, #D97706 0%, #92400E 100%);
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
        }
        
        .notification.info {
            background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
        }
    }