/* ম্যাপ টাইপ কন্ট্রোল */
.map-type-control {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 900;
    display: flex;
    gap: 8px;
    background: var(--glass);
    backdrop-filter: blur(12px);
    padding: 8px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
}

.map-type-btn {
    background: transparent;
    border: none;
    padding: 10px 16px;
    border-radius: 40px;
    cursor: pointer;
    font-family: 'Hind Siliguri', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--dark);
}

.map-type-btn i {
    margin-right: 6px;
}

.map-type-btn:hover, .map-type-btn.active {
    background: var(--primary);
    color: white;
}

/* বর্ডার লেবেল */
.boundary-label {
    background: #ef4444;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.3);
}

/* মার্কার স্টাইল */
.custom-marker {
    background: var(--primary);
    border: 3px solid white;
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.2s ease;
}

.custom-marker:hover {
    transform: scale(1.2);
    z-index: 1000;
}

/* রেস্পন্সিভ */
@media (max-width: 768px) {
    .map-type-control {
        top: 80px;
        right: 10px;
        padding: 5px;
    }
    
    .map-type-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .boundary-label {
        font-size: 10px;
        padding: 2px 8px;
    }
}