body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

header {
    background-color: #1a73e8;
    color: white;
    text-align: center;
    padding: 15px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#content {
    display: flex;
    flex-direction: column;
    height: 90vh;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

@media (min-width: 768px) {
    #content {
        flex-direction: row;
    }
}

#left-sidebar, #right-sidebar {
    flex: 1;
    min-width: 220px;
    padding: 20px;
    background-color: #fafafa;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-right: 15px;
}

#map {
    flex: 2;
    height: 100%;
    background-color: #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#right-sidebar {
    margin-left: 15px;
}

h2 {
    margin: 0 0 10px 0;
    color: #333;
}

#weatherResult {
    font-size: 1.1rem;
    color: #555;
    background-color: #f0f8ff;
    padding: 15px;
    margin-top: 10px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

#mini-map {
    width: 100%;
    height: 150px;
    margin-top: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

#button-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

button {
    background-color: #1a73e8;
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

button:hover {
    background-color: #558de8;
}

#search-container {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

#search-container input {
    padding: 10px;
    width: calc(100% - 70px);
    margin-right: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

#search-container button {
    padding: 10px 15px;
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 15px 0;
    background-color: #fafafa;
    border-top: 1px solid #ddd;
    margin-top: 20px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}