/* --- DB Fallback Toast Notification --- */
.db-fallback-toast {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--accent-coral);
    color: #fff;
    padding: 12px 24px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    display: none;
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.3);
}

@media (max-width: 767px) {
    .db-fallback-toast {
        font-size: 12px !important;
        padding: 10px 16px !important;
    }
}
