/* /assets/css/notifications.css */

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    min-width: 300px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-header {
    border-bottom: none;
    padding: 0.75rem 1rem;
}

.toast-success .toast-header {
    background-color: #198754;
    color: white;
}

.toast-error .toast-header {
    background-color: #dc3545;
    color: white;
}

.toast-warning .toast-header {
    background-color: #ffc107;
    color: black;
}

.toast-info .toast-header {
    background-color: #0dcaf0;
    color: white;
}

.toast .btn-close {
    opacity: 1;
    filter: brightness(0) invert(1);
}

.toast-body {
    padding: 0.75rem 1rem;
    color: #333;
}