/* Toast Module Styles */

#toastContainer {
    top: auto;
    bottom: 0;
    right: 0;
    left: auto;
}

.toast {
    min-width: 300px;
    max-width: 500px;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.3s ease-out;
    border: none;
}

.toast.show {
    opacity: 1;
    display: block;
}

.toast-body {
    border-radius: 0.375rem;
    font-weight: 500;
    padding: 1rem;
}

.toast-body i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.toast-body .btn-close {
    padding: 0;
    margin-left: auto;
}

/* Animation */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 576px) {
    #toastContainer {
        left: 0;
        right: 0;
        bottom: 0;
        padding: 1rem !important;
    }
    
    .toast {
        min-width: auto;
        max-width: 100%;
    }
}
