/* Toast Notification Styles */
.toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none; /* Allow clicks to pass through container */
}

.toast {
    background-color: rgba(50, 50, 50, 0.9);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: auto; /* Allow interaction with toasts if needed */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    min-width: 200px;
    justify-content: center;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.success {
    background-color: rgba(52, 199, 89, 0.9); /* Green */
}

.toast.error {
    background-color: rgba(255, 59, 48, 0.9); /* Red */
}

.toast.warning {
    background-color: rgba(255, 204, 0, 0.9); /* Yellow */
    color: #333;
}

.toast.info {
    background-color: rgba(0, 122, 255, 0.9); /* Blue */
}

/* Icons */
.toast-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
