/* Notification Toast */
#notification-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: none;
}

.notification {
    padding: 15px 25px;
    border-radius: 10px;
    background: var(--ats-white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: slideInRight 0.3s ease;
    border-left: 4px solid;
}

.notification.success {
    border-left-color: #28a745;
}

.notification.success i {
    color: #28a745;
}

.notification.error {
    border-left-color: #dc3545;
}

.notification.error i {
    color: #dc3545;
}

.notification.info {
    border-left-color: var(--ats-blue-light);
}

.notification.info i {
    color: var(--ats-blue-light);
}

.notification i {
    font-size: 24px;
}

.notification span {
    font-size: 14px;
    color: #333;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}