﻿
/*----------------------TOASTR DESIGN START---------------------------------*/
/* 🌟 Universal Toastr Design */
.toast-custom {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    border-radius: 8px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
    color: #fff !important;
    padding: 12px 15px !important;
    opacity: 0.95 !important;
}

/* ✅ Success Style */
.toast-success.toast-custom {
    background-color: #198754 !important; /* Bootstrap green */
}

/* ⚠️ Error Style */
.toast-error.toast-custom {
    background-color: #dc3545 !important; /* Bootstrap red */
}

/* ⚡ Warning Style */
.toast-warning.toast-custom {
    background-color: #ffc107 !important; /* Bootstrap yellow */
    color: #000 !important;
}

/* 💬 Info Style */
.toast-info.toast-custom {
    background-color: #0dcaf0 !important; /* Bootstrap cyan */
}
/*----------------------TOASTR DESIGN END---------------------------------*/