.side-panel-content {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.side-panel-content::-webkit-scrollbar {
    display: none;
}

.map-container {
    position: fixed;
    left: var(--sidebar-width);
    top: var(--header-height);
    width: calc(100% - var(--sidebar-width));
    height: calc(100vh - var(--header-height));
    background-color: #ECF0F1;
    transition: left 0.3s ease, width 0.3s ease;
}

.map-container.shifted {
    left: calc(var(--sidebar-width) + 400px);
    width: calc(100% - var(--sidebar-width) - 400px);
}

#map {
    width: 100%;
    height: 100%;
}

.locate-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 500;
    transition: var(--transition-smooth);
}

.locate-btn:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.locate-btn i {
    font-size: 20px;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.locate-btn:hover i {
    color: white;
}

.locate-btn:active {
    transform: scale(0.95);
}

.transport-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
}

.transport-buttons .transport-btn {
    width: 60px;
    height: 60px;
    font-size: 24px;
}
