/* css/components/_toast.css */

/* Toast Notifications */
.toast-notification {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 16px;
    position: fixed;
    z-index: 1050; /* Higher than modals */
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    transition: visibility 0s, opacity 0.5s ease-in-out;
}

.toast-notification.show {
    visibility: visible;
    opacity: 1;
}

.toast-notification.success { background-color: #28a745; }
.toast-notification.error { background-color: #dc3545; }
.toast-notification.info { background-color: #17a2b8; }
.toast-notification.warning { background-color: #ffc107; color: #333; }
