.kgh2-master {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    font-family: "Poppins", sans-serif;
    
}

.kgh2-master h2 {
    color: #006837;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.kgh2-left-column {
    flex: 1;
    min-width: 350px;
}

.kgh2-status-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.status-btn {
    padding: 10px 16px;
    border: 2px solid #006837;
    background: white;
    color: #006837;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
}

.status-btn.active {
    background: #006837;
    color: white;
}

.kgh2-search-box {
    margin-bottom: 20px;
}

#kgh2-search {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.kgh2-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.2s;
}

.kgh2-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.kgh2-card h3 {
    margin: 0 0 10px;
    color: #006837;
    font-size: 1.3em;
}

.status {
    padding: 4px 10px;
    border-radius: 20px;
    color: #000;
    font-size: 0.8em;
}

.status.planned,.status.operational,.status.under-construction {
    background: #b7e38a;
}

.kgh2-map-wrapper {
    flex: 1;
    min-width: 300px;
    margin-top: 20px;
}

#kgh2-map {
    border: 3px solid #006837;
    border-radius: 12px;
}

@media (min-width: 900px) {
    .kgh2-master {
        display: flex;
        gap: 30px;
    }

    .kgh2-map-wrapper {
        margin-top: 0;
    }
}