* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    height: 100vh;
}

.sidebar {
    width: 25%;
    background-color: #D3D3D3;
    color: #000000;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.logo {
    font-size: 24px;
    margin-bottom: 20px;
}

.menu {
    list-style: none;
    width: 100%;
    font-size: 16px;
}

.menu li {
    margin: 8px 0;
    font-size: 16px;
}

.menu li a {
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    display: block;
    padding: 10px;
    border-radius: 5px;
    transition: background 0.3s;
}

.menu li a:hover {
    background: #575757;
    font-size: 16px;
}

.map-container {
    width: 75%;
    position: relative;
}

#map {
    width: 100%;
    height: 100%;
    background-image: url("img/map.jpg");
}

.search-box {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.search-box input {
    border: none;
    outline: none;
    padding: 5px;
    font-size: 16px;
}

.search-box button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

@media (max-width: 768px) {
    .sidebar {
        display: none; /* Hidden on smaller screens */
    }

    .map-container {
        width: 100%; /* Full width on mobile */
    }

    .search-box {
        top: 10px;
        width: 90%;
        left: 5%;
        transform: translateX(0);
    }
}
