/* All toastr notifications */
.toast {
    color: #ffffff !important; /* White text */
    font-weight: 600;
    border-radius: 10px;
    font-size: 15px;
}

/* Success specific */
.toast-success {
    background-color: #28a745 !important; /* Proper Green */
}

/* Error specific */
.toast-error {
    background-color: #dc3545 !important; /* Proper Red */
}

/* Info specific */
.toast-info {
    background-color: #17a2b8 !important; /* Proper Blue */
}

/* Warning specific */
.toast-warning {
    background-color: #ffc107 !important; /* Proper Yellow */
    color: #212529 !important; /* Dark Text for yellow background */
}
/* Disable pointer cursor on labels and form controls */
/* label {
    cursor: default !important;
} */

/* Show normal I-beam text cursor on form inputs */
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
    cursor: text !important;
}
