/* ===== 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: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: box-shadow 0.2s ease;
}

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

.info-card-box p,
.info-card-box h6 {
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.info-card-box p:last-child {
    margin-bottom: 0;
}

.info-card-box h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.info-card-box h6 {
    font-size: 0.95rem;
    color: #2e7d32;
}

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

/* Mas'ul xodim kartochkasi - rasm bo'lgani uchun biraz kattaroq */
#regionInfoCard .info-card-box {
    min-height: auto;
}

#regionInfoCard img {
    width: 80px;
    height: 106px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

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

/* 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);
}

/* Padding responsive */
.p-md-3 {
    padding: 1rem;
}

@media (min-width: 768px) {
    .p-md-3 {
        padding: 1.5rem;
    }
}

.mb-md-3 {
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .mb-md-3 {
        margin-bottom: 1rem;
    }
}

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

@media (max-width: 767.98px) {
    #uzb-map svg {
        max-height: 350px;
    }

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

    .info-card-box h5 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .info-card-box h6 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .info-card-box p {
        font-size: 0.85rem;
        margin-bottom: 0.35rem;
    }

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

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

    #regionInfoCard {
        display: flex;
    }

    #regionInfoCard .info-card-box {
        display: flex;
        flex-direction: row;
        gap: 12px;
    }

    #regionInfoCard img {
        width: 70px;
        height: 93px;
        flex-shrink: 0;
    }

    #regionInfoCard > div > div > div {
        flex: 1;
    }

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

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

@media (max-width: 576px) {
    #uzb-map svg {
        max-height: 300px;
    }

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

    .info-card-box h5 {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }

    .info-card-box h6 {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .info-card-box p {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }

    #regionInfoCard .info-card-box {
        flex-direction: column;
        gap: 8px;
    }

    #regionInfoCard img {
        width: 100%;
        max-width: 100px;
        height: auto;
        aspect-ratio: 3/4;
    }

    .btn-stats {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
        margin-top: 0.35rem;
    }
}