/* Adjust the overall toast appearance */
.toast {
    font-size: 0.8rem !important; /* Smaller text */
    padding: 8px 12px !important; /* Less padding */
    border-radius: 4px !important; /* Smaller border radius */
}

/* Optionally adjust the title (if displayed) */
.toast-title {
    font-size: 0.9rem !important;
}

/* If you want to further customize specific toast types, e.g. success or error: */
.toast-success {
    background-color: #28a745 !important; /* For example, a softer green */
    color: #fff !important;
}
.toast-error {
    background-color: #dc3545 !important; /* Softer red */
    color: #fff !important;
}

/* Adjust toast container margins if needed */
#toast-container > .toast {
    margin: 5px 0 !important;
}
