/* Override default toastr notification styles */
.toast {
    background-color: #ffffff !important;
    /* Change background color */
    border-bottom: 3px solid #5c5e5c !important;
    /* Add a custom border */
    border-radius: 8px !important;
    /* Rounded corners */
    color: #222121 !important;
    /* Text color */
    padding: 15px !important;
    /* Adjust padding */

    box-shadow: 4px 4px 8px #00000033;
    /* Subtle shadow */
}

/* Customize the title */
.toast-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}

/* Customize the message */
.toast-message {
    font-size: 14px;
}

/* Close button customization */
.toast-close-button {
    color: #222121 !important;
    /* Close button color */
}


.toast-success {
    /* background-color: #28a745 !important; */
    border-bottom: 3px solid #218838 !important;
}

.toast-error {
    /* background-color: #dc3545 !important; */
    border-bottom: 3px solid #c82333 !important;
}

.toast-warning {
    /* background-color: #ffc107 !important; */
    border-bottom: 3px solid #e0a800 !important;
}

.toast-info {
    /* background-color: #ffc107 !important; */
    border-bottom: 3px solid #0d6efd !important;
}