.map-controls {
    position: absolute;
    bottom: 100px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.map-control-btn {
    width: 40px;
    height: 40px;
    background-color: white;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.map-control-btn:hover {
    background-color: #f4f4f4;
}

.map-control-btn img {
    width: 24px;
    height: 24px;
}

.black-btn {
    background-color: black;
}

.disabled {
    pointer-events: none;
    cursor: not-allowed;
}

.fondation-logo {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 2px;
}

.fondation-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 0, 0, 0.2);
}

.fondation-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .map-controls {
        bottom: 90px;
    }
}