.school-map-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    font-family: 'Segoe UI', sans-serif;
}

/* Sidebar and Map Split */
.map-sidebar {
    width: 30%;
    max-height: 500px;
    overflow-y: auto;
    background: #f9f9f9;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 8px;
}

#map {
    width: 68%;
    height: 500px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

/* Form Styling */
#school-search-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 250px;
    margin-bottom: 20px;
}

#school-search-form input,
#school-search-form button {
    padding: 8px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

/* School List Styling */
#school-list {
    list-style: none;
    padding-left: 0;
}

#school-list li {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ccc;
}

#school-list a {
    display: inline-block;
    margin-top: 5px;
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
}

#school-list a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .school-map-container {
        flex-direction: column;
    }

    .map-sidebar,
    #map {
        width: 100%;
    }
}
