/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Dec 5, 2024, 2:58:20 PM
    Author     : frank
*/

/* Override default toastr notification styles */
.toast {
    background-color: #ffffff !important;
    /* Change background color */
    border-bottom: 3px solid var(--gray) !important;
    /* Add a custom border */
    border-radius: 8px !important;
    /* Rounded corners */
    color: var(--dark) !important;
    /* Text color */
    padding: 15px !important;
    /* Adjust padding */

    box-shadow: 4px 4px 8px var(--dark);
    /* Subtle shadow */
}

/* Customize the title */
.toast-title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}

/* Customize the message */
.toast-message {
    font-size: 14px;
}

/* Close button customization */
.toast-close-button {
    color: var(--dark) !important;
    /* Close button color */
}


.toast-success {
    /* background-color: #28a745 !important; */
    border-bottom: 3px solid var(--success) !important;
}

.toast-error {
    /* background-color: #dc3545 !important; */
    border-bottom: 3px solid var(--danger) !important;
}

.toast-warning {
    /* background-color: #ffc107 !important; */
    border-bottom: 3px solid var(--warning) !important;
}

.toast-info {
    /* background-color: #ffc107 !important; */
    border-bottom: 3px solid var(--blue) !important;
}