html,
body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    overflow: hidden;
    /* Skrollni yo'qotish */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #007bff;
    color: white;
    padding: 15px;
}

#sidebar {
    width: 300px;
    /* Sidebarning kengligi */
    height: calc(100% - 60px);
    /* Header balandligi minus */
    overflow-y: auto;
    /* Vertikal skroll */
    background-color: #f8f9fa;
    /* Oq rangli fon */
    padding: 20px;
    /* Ichki bo'shliq */
    position: absolute;
    /* Absolute pozitsiyalash */
    top: 60px;
    /* Header balandligidan pastda joylashishi uchun */
    left: 0;
    /* Chap tomonga joylashish */
}

#sidebar p,
#sidebar h2,
#sidebar h3,
#sidebar ul {
    font-size: 14px;
    /* Font o'lchami */
}

#map {
    height: calc(100% - 60px);
    /* Header balandligi */
    margin-left: 340px;
    /* Sidebar kengligini hisobga olish */
}

select {
    padding: 5px;
    border: none;
    border-radius: 4px;
}

.info-table {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    /* Dastlab yashirin */
    z-index: 1000;
    /* Xarita ustida ko'rinishi uchun */
    max-height: 400px;
    /* Maksimal balandlik */
    overflow-y: auto;
    /* Vertikal skroll */
}

.info-table h3 {
    margin: 10px;
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

.close-button {
    background-color: #ff4d4d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.close-button:hover {
    background-color: #ff1a1a;
}

.popup-content {
    height: 200px;
    /* Maksimal balandlik */
    overflow-y: auto;
    /* Faqat vertikal skroll */
}

.flag-crest {
    display: flex;
    /* Rasmlarni yonma-yon joylashtirish */
    align-items: center;
    /* Vertikal markazlash */
    margin-bottom: 20px;
    /* Rasm va matn orasida bo'shliq */
}

.flag,
.crest {
    width: 50%;
    /* Rasmlar kengligi */
    height: auto;
    /* Balandlik avtomatik hisoblanadi */
    margin-right: 10px;
    /* O'ng tarafdagi bo'shliq */
}


.legend {
    background: white;
    /* Oq fon */
    padding: 5px;
    /* Ichki bo'shliq */
    border-radius: 5px;
    /* Burchaklarni yumshatish */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    /* Soyalar */
    margin: 5px;
    /* Margin */
    font-size: 11px;
    /* Font o'lchami */
    z-index: 1000;
    /* Yuqorida ko'rinishi uchun */
}

.legend h4 {
    margin: 0 0 5px;
    /* O'lcham */
    text-align: center;
    /* O'rtaga joylashishi uchun */
}

.legend-item {
    display: flex;
    /* Flex konteyner */
    align-items: center;
    /* O'rtada joylashish */
    margin-bottom: 5px;
    /* Itemlar orasidagi bo'shliq */
}

.color-box {
    display: inline-block;
    /* Inline block */
    width: 20px;
    /* Rang kvadratining kengligi */
    height: 20px;
    /* Rang kvadratining balandligi */
    margin-right: 5px;
    /* Raqam va rang kvadrati orasidagi bo'shliq */
    border-radius: 2px;
    /* Burchaklarni yumshatish */
}

.mobile-alert {
    margin: 50px 20px;
    background-color: rgba(255, 0, 0, 0.8);
    color: white;
    padding: 15px;
    text-align: center;

    /* Yuqori qatlamda ko'rsatish */
}