/* Notification styles */
#notificationContainer {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
    width: 100%;
}

.notification {
    padding: 15px;
    border-radius: 8px;
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

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

.notification.info {
    background-color: var(--color-info);
}

.notification.success {
    background-color: var(--color-success);
}

.notification.warning {
    background-color: var(--color-warning);
}

.notification.error {
    background-color: var(--color-error);
}

.notification-content {
    display: flex;
    align-items: center;
}

.notification-content span {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #notificationContainer {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: 100%;
    }
}