/* Distributors (Hệ thống phân phối) */

.hv-distribution-container-wrapper {
    margin: 0 0 3rem 0;
}

.hv-distribution-container {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.hv-distribution-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hv-distribution-right {
    flex: 1;
}

.hv-distribution-filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.hv-distribution-filters select {
    width: 100%;
    padding: 8px;
}

.hv-distribution-list {
    display: grid;
    gap: 10px;
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
}

.hv-dist-item {
    border: 1px solid #eee;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.hv-dist-item:hover {
    border-color: #2c7be5;
    background-color: #f0f7ff;
}

.hv-dist-item.is-active {
    border-color: #2c7be5 !important;
    background-color: #f0f7ff !important;
}

.hv-dist-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.hv-dist-address {
    color: #666;
    font-size: 14px;
}

.hv-dist-phone {
    color: #2c7be5;
    margin-top: 4px;
    font-size: 14px;
}

#hv-map-container {
    width: 100%;
    height: 100%;
    min-height: 420px;
    background: #f7f7f7;
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
}

#hv-map-frame {
    width: 100%;
    height: 420px;
    border: 0;
}

.hv-map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 420px;
    color: #999;
}

@media (max-width: 767px) {
    .hv-distribution-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .hv-distribution-left,
    .hv-distribution-right {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .hv-distribution-filters {
        grid-template-columns: 1fr;
    }
}

