.query-counter-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.query-counter {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    color: #666;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.query-counter .count {
    font-weight: 600;
    color: #333;
}

.query-counter .remaining {
    font-size: 10px;
    margin-top: 2px;
}

.query-counter .unlimited {
    font-weight: 600;
    color: #4CAF50;
}

.query-counter.warning {
    border-color: #ff9800;
    background: rgba(255, 152, 0, 0.1);
}

.query-counter.warning .count {
    color: #ff9800;
}

.query-limit-warning {
    border-left: 4px solid #ff9800 !important;
    background-color: rgba(255, 152, 0, 0.1) !important;
}

@media (max-width: 768px) {
    .query-counter-container {
        top: 60px;
        right: 10px;
    }

    .query-counter {
        padding: 6px 8px;
        font-size: 11px;
        min-width: 70px;
    }
}