/* === Compact Map Action Buttons === */
.map-custom-btn {
    position: absolute;
    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(8px);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transition: all 0.2s ease;
    z-index: 80;
    display: flex;
    align-items: center;
    gap: 4px;
}

.map-custom-btn:hover {
    background: rgba(40, 44, 60, 0.85);
    border-color: var(--primary-accent);
    transform: translateY(-1px);
}

.map-custom-btn:active {
    transform: translateY(0);
}

/* Position specific buttons */
.map-custom-btn:nth-of-type(1) {
    top: 15px;
    right: 20px;
}

.map-custom-btn:nth-of-type(2) {
    top: 15px;
    right: 140px;
}

.map-custom-btn:nth-of-type(3) {
    top: 15px;
    right: 260px;
}

@media (max-width: 768px) {
    .map-custom-btn {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
}