
/* Unified Toast Notifications Styling */
#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    min-width: 320px;
    max-width: 450px;
    padding: 16px;
    border-radius: 12px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    overflow: hidden;
    position: relative;
    pointer-events: auto;
}

.toast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

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

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000000;
}

.toast-content i {
    font-size: 1.25rem;
    color: #000000;
}

.toast-success {
    background-color: #f0fdf4;
}

.toast-success::before {
    background-color: #059669;
}

.toast-error {
    background-color: #fef2f2;
}

.toast-error::before {
    background-color: #dc2626;
}

.toast-info {
    background-color: #eff6ff;
}

.toast-info::before {
    background-color: #3b82f6;
}

.toast-warning {
    background-color: #fffbeb;
}

.toast-warning::before {
    background-color: #d97706;
}

@media (max-width: 768px) {
    #toast-container {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }
    
    .toast {
        min-width: auto;
        max-width: none;
        width: 100%;
    }
}
