#notification-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notification {
    display: flex;
    flex-direction: column;
    min-width: 320px;
    max-width: 450px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0,0,0,0.05);
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    opacity: 0;
    overflow: hidden;
    position: relative;
}

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

.notification-content {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-left: 5px solid transparent;
}

.notification-success .notification-content { border-left-color: #10b981; }
.notification-error .notification-content { border-left-color: #ef4444; }

.notification-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

.notification-icon svg {
    width: 20px;
    height: 20px;
}

.notification-success .notification-icon {
    background-color: #ecfdf5;
    color: #10b981;
}

.notification-error .notification-icon {
    background-color: #fef2f2;
    color: #ef4444;
}

.notification-message {
    font-size: 14.5px;
    color: #374151;
    line-height: 1.5;
    font-weight: 500;
}

.notification-progress-bar {
    height: 4px;
    width: 100%;
}

.notification-success .notification-progress-bar { background-color: #10b981; }
.notification-error .notification-progress-bar { background-color: #ef4444; }
