/* ========================================
   QUERY COUNTER & NAVIGATION CONTROLS
   ======================================== */

.query-counter {
    position: fixed;
    top: 90px;
    right: 20px;
    background: linear-gradient(135deg, rgba(20, 30, 48, 0.95), rgba(36, 59, 85, 0.95));
    border: 2px solid #26de81;
    border-radius: 20px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(38, 222, 129, 0.3);
    z-index: 1000;
    animation: slideInRight 0.5s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.query-counter-title {
    color: #26de81;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.query-counter-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.query-current {
    font-size: 2rem;
    font-weight: 800;
    color: #26de81;
    text-shadow: 0 0 10px rgba(38, 222, 129, 0.5);
}

.query-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
}

.query-limit {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
}

.query-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    margin-top: 0.3rem;
}

/* New Search Button */
.btn-new-search {
    background: linear-gradient(135deg, #26de81, #2ed573);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(38, 222, 129, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-new-search:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(38, 222, 129, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .query-counter {
        top: 80px;
        right: 10px;
        padding: 0.8rem 1rem;
    }

    .query-current {
        font-size: 1.5rem;
    }

    .query-limit {
        font-size: 1rem;
    }
}