.query-loading-mask {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.22);
}

.query-loading-mask.is-visible {
    display: flex;
}

.query-loading-card {
    display: flex;
    align-items: center;
    min-width: 180px;
    padding: 22px 28px;
    border: 1px solid rgba(148, 163, 184, 0.32);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.2);
    color: #334155;
}

.query-loading-spinner {
    width: 30px;
    height: 30px;
    box-sizing: border-box;
    flex: 0 0 auto;
    border: 4px solid #dbeafe;
    border-right-color: transparent;
    border-radius: 50%;
    transform: rotate(0deg);
}

.query-loading-text {
    margin-left: 14px;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.query-loading-dots {
    display: inline-flex;
    align-items: center;
    height: 20px;
    margin-left: 7px;
}

.query-loading-dots span {
    width: 5px;
    height: 5px;
    margin-left: 4px;
    border-radius: 50%;
    background: #2563eb;
    opacity: 0.45;
    transform: translateY(0);
}

[data-query-loading-button][disabled] {
    cursor: not-allowed;
    opacity: 0.62;
}
