﻿/* GLOBAL Toast Font */
.oli-toast * {
    font-family: "Poppins", sans-serif !important;
    background-color: ghostwhite !important;
    color: black;
}

/* Default Toast (base style) */
.oli-toast.e-toast {
    border-left: 5px solid #32893b; 
}

/* Close Icon */
.oli-toast .e-toast-close-icon::before {
    font-size: 16px;
}

/* Title */
.oli-toast .e-toast-title {
    font-weight: 600 !important;
}

/* ------------------------------------------------------------------
   VARIANT COLORS
------------------------------------------------------------------ */

/* SUCCESS */
.oli-success.e-toast {
    border-left-color: #32893b !important; 
    color: #1d5e27 !important;
}

/* DANGER */
.oli-danger.e-toast {
    border-left-color: #d9534f !important; 
    color: #a94442 !important;
}

/* WARNING */
.oli-warning.e-toast {
    border-left-color: #f0ad4e !important; 
    color: #8a6d3b !important;
}

/* INFO */
.oli-info.e-toast {
    border-left-color: #5bc0de !important; 
    color: #31708f !important;
}

/* SUCCESS close icon */
.oli-success .e-toast-close-icon::before {
    color: #1d5e27 !important;
}

/* DANGER close icon */
.oli-danger .e-toast-close-icon::before {
    color: #a94442 !important;
}

/* WARNING close icon */
.oli-warning .e-toast-close-icon::before {
    color: #8a6d3b !important;
}

/* INFO close icon */
.oli-info .e-toast-close-icon::before {
    color: #31708f !important;
}
