/* Notification toast styles */
.notification {
    position: fixed;
    top: 80px;
    right: 20px;
    background: #2a2a2a;
    border: 1px solid #454545;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: #ffffff;
    z-index: 3000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    max-width: 350px;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
}

.notification.error {
    border-color: #f87171;
    background: rgba(248, 113, 113, 0.1);
}
