
/* Custom Toast and Alert Styles */
.alert-custom  {
    margin-bottom: 1rem;
    background-color: var(--primary-color-50) !important;
}

.alert-custom .alert-custom-body {
    font-size: var(--font-size-md);
    gap: 0.5rem;
    color: var(--primary-color-700);
    /* font-weight: bold; */
    padding: 0.75rem 1rem;
    word-wrap: break-word;
}

.toast-custom, .alert-custom {
    border-radius: var(--border-radius-md) !important;
    border: 1px solid var(--primary-color-700) !important;
}

.toast-custom .toast-custom-body {
    display: flex;
    align-items: center;
    font-size: var(--font-size-md);
    gap: 0.5rem;
    color: #000;
    /* font-weight: bold; */
    padding: 0.75rem 1rem;
    word-wrap: break-word;
}

.toast-custom-info, .alert-custom-info {
    background-color: var(--info-color-50) !important;
    border: 1px solid var(--info-color-700) !important;

    & .toast-custom-body i, .alert-custom-body, .toast-close-btn {
        color: var(--info-color-700);  
    }
}

.toast-custom-success, .alert-custom-success {
    background-color: var(--success-color-50) !important;
    border: 1px solid var(--success-color-700) !important;

    & .toast-custom-body i, .alert-custom-body, .toast-close-btn {
        color: var(--success-color-700) !important;  
    }
}

.toast-custom-warning, .alert-custom-warning {
    background-color: var(--warning-color-50) !important;
    border: 1px solid var(--warning-color-700) !important;

    & .toast-custom-body i, .alert-custom-body, .toast-close-btn {
        color: var(--warning-color-700) !important;  
    }
}

.toast-custom-danger, .alert-custom-danger {
    background-color: var(--danger-color-50) !important;
    border: 1px solid var(--danger-color-700) !important;

    & .toast-custom-body i, .alert-custom-body, .toast-close-btn {
        color: var(--danger-color-700);  
    }
}

.toast-close-btn {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
}