.e-toast-container {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    background-color: none;
}
.e-toast{
    width: auto !important;
}
.e-toast-danger{
    border: 1px solid #D92D20 !important;
    background-color: #FEF3F2 !important;
    border-radius: 12px !important;
    margin: 0 !important;
}

/* ✅ Inline content */
.e-toast-content {
    padding: 0 !important;
    margin: 0 !important;
    font-size: 16px;
    font-weight: 600;
    color: #344054 !important;

}

/* ✅ Left icon */
.e-toast-message{
    display: flex !important;
    align-items: center;
    gap: 10px;
    flex-direction: row !important;

}
.e-toast-title::before {
    content: "!";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #D92D20;
    color: #D92D20;
    font-weight: 700;
    font-size: 14px;
}
.e-toast-success {
    border: 1px solid #0F5132;
    background-color: #D1E7DD;
}

.e-toast-warning {
    border: 1px solid #664d03;
    background-color: #FFF4E5;
}

.e-toast-info {
    border: 1px solid #0b5cff;
    background-color: #E7F0FF;
}
@media (max-width: 768px) {
    .e-toast-content {
    padding: 0 !important;
    margin: 0 !important;
    font-size: 14px;
    font-weight: 400;
    color: #344054 !important;

}
.e-toast-message{
    display: flex !important;
    align-items: center;
    gap: 6px;
    flex-direction: row !important;
}
.e-toast-title::before {
    content: "!";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #D92D20;
    color: #D92D20;
    font-weight: 500;
    font-size: 10px;
}
}
@media (max-width: 580px) {
     .e-toast-content {
    padding: 0 !important;
    margin: 0 !important;
    font-size: 12px;
    font-weight: 300;
    color: #344054 !important;

}
.e-toast-message{
    display: flex !important;
    align-items: center;
    gap: 4px;
    flex-direction: row !important;
}
.e-toast-title::before {
    content: "!";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid #D92D20;
    color: #D92D20;
    font-weight: 400;
    font-size: 8px;
}
}