#csm-search-container {
    display: flex;
    margin-bottom: 10px;
}

#csm-search {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

#csm-search-btn {
    padding: 10px;
    border: 1px solid #ccc;
    border-left: none;
    border-radius: 0 4px 4px 0;
    background-color: #0073aa;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

#csm-search-btn:hover {
    background-color: #005177;
}

#csm-map {
    width: 100%;
    height: 800px; /* Set the map height to 800px */
    border: 1px solid #ccc;
    border-radius: 4px;
}

@media (max-width: 768px) {
    #csm-map {
        height: 600px; /* Adjust the height for smaller screens if needed */
    }
}

#csm-map-container {
    position: relative;
    width: 100%;
    height: 100%;
}

#search-bar, #filters {
    display: flex;
    align-items: center;
    margin: 10px 0;
    width: 100%;
}

#search-input, #grade-filter, #city-filter {
    flex: 1;
    padding: 10px;
    margin: 0 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#search-button {
    padding: 10px 20px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #0073aa;
    color: white;
    cursor: pointer;
    box-sizing: border-box;
}

#search-button:hover {
    background-color: #005177;
}

#filter-button {
    padding: 10px 20px;
    margin: 0 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #0073aa;
    color: white;
    cursor: pointer;
    box-sizing: border-box;
}

#filter-button:hover {
    background-color: #005177;
}

#no-results-message {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px;
    background-color: rgba(255, 0, 0, 0.8);
    color: white;
    border-radius: 4px;
    display: none;
    z-index: 1000;
}

button {
    padding: 10px 20px;
    margin: 0 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #0073aa;
    color: white;
    cursor: pointer;
    box-sizing: border-box;
    white-space: nowrap; /* Prevent button text from wrapping */
}

button:hover {
    background-color: #005177;
}
