/* Modern Notification Toasts */
#smq-notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.smq-toast {
    width: 320px;
    background: #ffffff;
    border-left: 4px solid #2563eb;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 15px;
    pointer-events: auto;
    animation: smq-slide-in 0.3s ease-out;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

[data-bs-theme="dark"] .smq-toast {
    background: #1e293b;
    color: #f1f5f9;
}

.smq-toast.smq-toast-fadeout {
    opacity: 0;
    transform: translateX(100%);
}

.smq-toast-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.smq-toast-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1e293b;
}

[data-bs-theme="dark"] .smq-toast-title {
    color: #f8fafc;
}

.smq-toast-close {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    padding: 0;
}

.smq-toast-body {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
}

[data-bs-theme="dark"] .smq-toast-body {
    color: #cbd5e1;
}

.smq-toast-action {
    display: block;
    margin-top: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
}

@keyframes smq-slide-in {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
