/* ═══════════════════════════════════════════════════════════════
   Toasts, shared by the portal (portal/layouts/master.blade.php)
   and the public website (website/layouts/master.blade.php).
   Style from the legacy ecites.co.ke toasts: a solid block with a white
   outlined-circle icon on the left and white text. Both showToast()
   helpers only add the type class; colours and icons live here.
   ═══════════════════════════════════════════════════════════════ */
.toastify.toastify-success,
.toastify.toastify-error,
.toastify.toastify-info,
.toastify.toastify-warning {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 10px;
    color: #fff !important;
    font-size: 16px;
    line-height: 1.4;
    text-align: left;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
}

.toastify.toastify-success::before,
.toastify.toastify-error::before,
.toastify.toastify-info::before,
.toastify.toastify-warning::before {
    content: '';
    flex: none;
    width: 24px;
    height: 24px;
    background: center / contain no-repeat;
}

.toastify.toastify-success { background: #4caf50 !important; }
.toastify.toastify-success::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M7.5 12.5l3 3 6-6.5'/%3E%3C/svg%3E");
}

.toastify.toastify-error { background: #bf4040 !important; }
.toastify.toastify-error::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M8.5 8.5l7 7M15.5 8.5l-7 7'/%3E%3C/svg%3E");
}

.toastify.toastify-info { background: #067870 !important; }
.toastify.toastify-info::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 11v6'/%3E%3Ccircle cx='12' cy='7.5' r='.6' fill='white'/%3E%3C/svg%3E");
}

.toastify.toastify-warning { background: #ffd000 !important; }
.toastify.toastify-warning::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6.5v7'/%3E%3Ccircle cx='12' cy='17' r='.6' fill='white'/%3E%3C/svg%3E");
}
