﻿/* Scandinavian minimalist Toastr theme */

#toast-container > div {
    border-radius: 8px !important;
    padding: 14px 18px !important;
    font-size: 0.95rem !important;
    backdrop-filter: blur(4px);
}

/*.toast-success {
    background-color: rgba(30, 140, 80, 0.9) !important;
}

.toast-info {
    background-color: rgba(70, 120, 180, 0.9) !important;
}

.toast-warning {
    background-color: rgba(210, 170, 40, 0.95) !important;
}

.toast-error {
    background-color: rgba(200, 60, 60, 0.95) !important;
}
*/
.toast-title {
    font-weight: 600;
    margin-bottom: 2px;
}

.toast-message {
    opacity: 0.95;
}
/* Dark mode friendly toastr theme */

.toast-success {
    background-color: #2d7d46 !important;
    color: #fff !important;
}

.toast-error {
    background-color: #b02a37 !important;
    color: #fff !important;
}

.toast-warning {
    background-color: #b8860b !important;
    color: #fff !important;
}

.toast-info {
    background-color: #0d6efd !important;
    color: #fff !important;
}

/* Dark-mode shadow */
.toast {
    box-shadow: 0 0 12px rgba(0,0,0,0.4);
}
