/* ===== O'ZBEKISTON XARITASI VA MA'LUMOTLAR KARTOCHKASI ===== */

/* Xarita konteyneri */
#uzb-map {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

#uzb-map svg {
    display: block;
    width: 100%;
    height: auto;
    max-height: 600px;
}

/* Tooltip */
#mapTooltip {
    position: fixed;
    display: none;
    pointer-events: none;
    z-index: 9999;
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.78);
    color: #fff;
    font-size: 13px;
}

/* Ma'lumotlar kartochkalari - bir xil balandlik */
.info-card-box {
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.2s ease;
}

.info-card-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Boshqarma boshlig'i kartochkasi */
#regionShefCard .info-card-box {
    min-height: 120px;
}

/* Mas'ul xodim kartochkasi (rasm bo'lgani uchun balandroq) */
#regionInfoCard .info-card-box {
    min-height: 160px;
}

/* Sertifikat statistikasi kartochkasi - KICHIKROQ */
#regionCertStats .info-card-box {
    min-height: 100px;
}

/* Statistika tugmasi */
.btn-stats {
    background-color: #2e7d32;
    color: #fff;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    display: inline-block;
    border: none;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.2);
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    cursor: pointer;
    margin-top: 0.5rem;
}

.btn-stats:hover,
.btn-stats:focus {
    background-color: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(27, 94, 32, 0.25);
    text-decoration: none;
    color: #fff;
    outline: none;
}

.btn-stats:active {
    transform: translateY(0);
}

/* Mobil moslashuv */
@media (max-width: 767.98px) {
    #uzb-map svg {
        max-height: 400px;
    }

    .info-card-box {
        min-height: auto;
        font-size: 0.9rem;
    }

    .info-card-box h6 {
        font-size: 1rem;
    }

    #regionInfoCard .info-card-box {
        min-height: 140px;
    }

    #regionShefCard .info-card-box {
        min-height: 100px;
    }

    #regionCertStats .info-card-box {
        min-height: 90px;
    }

    .btn-stats {
        font-size: 0.8rem;
        padding: 0.35rem 0.85rem;
    }
}