﻿.ck-powered-by-balloon
{
    display:none !important;
}


/* Toastify css */
.toast-success {
    --tw-bg-opacity: 1;
    background: rgb(36 151 130 / var(--tw-bg-opacity)) !important;
    border-radius: .375rem !important;
}
.toast-info {
    --tw-bg-opacity: 1;
    color: rgb(59 130 246 / var(--tw-text-opacity)) !important;
    border-radius: .375rem !important;
}
.toast-warning {
    --tw-bg-opacity: 1;
    background-color: rgb(234 179 8 / var(--tw-bg-opacity)) !important;
    border-radius: .375rem !important;
}
.toast-danger {
    --tw-bg-opacity: 1;
    background: rgb(239 68 68 / var(--tw-bg-opacity)) !important;
    border-radius: .375rem !important;
}

/* Global Toast Styles */
.global-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 8px;
    background: #333;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 99999;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-size: 14px;
}
.global-toast.show {
    transform: translateX(0);
}
.global-toast-success {
    background: #10b981;
}
.global-toast-error {
    background: #ef4444;
}
.global-toast-info {
    background: #3b82f6;
}
.global-toast i {
    font-size: 16px;
}