/* Toast Notification */
#toast-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1055;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
}

    .toast.show {
        opacity: 1;
        transform: translateY(0);
    }

    .toast.success {
        background-color: #16A34A;
        color: white;
    }

    .toast.error {
        background-color: #DC2626;
        color: white;
    }

    .toast.warning {
        background-color: #F59E0B;
        color: white;
    }

    .toast.info {
        background-color: #2563EB;
        color: white;
    }

/* Toast Show Animation */
.toast.show {
    opacity: 1;
    transform: translateX(0);
}

/* Toast Container Scrollbar */
#toast-container::-webkit-scrollbar {
    width: 5px;
}

#toast-container::-webkit-scrollbar-track {
    background: transparent;
}

#toast-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

/* Toast Container Fade Out */
#toast-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Toast Close Button */
.toast .close-btn {
    float: right;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.toast .close-btn:hover {
    opacity: 1;
}

/* Toast Stacking */
#toast-container .toast + .toast {
    margin-top: 8px;
}