/* Custom Toast Styles */
#toast-container {
    z-index: 9999;
}

.toast {
    min-width: 300px;
}

.toast-header {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
}

.toast-header i {
    font-size: 1.1rem;
}

.toast-body {
    padding: 0.75rem;
    color: #212529;
    background-color: #fff;
    border-bottom-left-radius: calc(0.375rem - 1px);
    border-bottom-right-radius: calc(0.375rem - 1px);
}

/* Animation for toast entrance */
.toast.show {
    animation: slideInFromRight 0.3s ease-out;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
