﻿#map {
    height: 600px;
    width: 100%;
}

h2 {
    text-align: center;
}

.controls {
    text-align: center;
    margin-bottom: 10px;
}

.distance-label {
    font-weight: bold;
    background-color: white;
    padding: 2px 8px;
    border: 2px solid;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    white-space: nowrap;
    text-align: center;
    font-size: 12px;
    position: relative;
    display: inline-block;
}

.number-label {
    font-weight: bold;
    width: 22px;
    height: 22px;
    line-height: 22px;
    padding: 0;
    border-radius: 50%;
    font-size: 11px;
    text-align: center;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.directions-btn {
    display: block;
    margin: 10px auto 0;
    padding: 8px 15px;
    background-color: #2C3E50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
}

    .directions-btn:hover {
        background-color: #34495E;
        transform: scale(1.05);
    }

    .directions-btn:active {
        transform: scale(0.95);
    }

/* পপআপের জন্য নতুন স্টাইল */
.custom-popup .leaflet-popup-content-wrapper {
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    padding: 10px;
}

.custom-popup .leaflet-popup-content {
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.5;
}

.popup-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.popup-label {
    font-weight: bold;
    width: 90px; /* কোলনগুলো একই সারিতে রাখার জন্য ফিক্সড প্রস্থ */
    color: #2C3E50;
}

.popup-value {
    flex: 1;
    text-align: left;
    padding-left: 10px;
    color: #333;
}

.popup-header {
    font-size: 15px;
    font-weight: bold;
    color: #34495E;
    margin-bottom: 8px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
