body {
    font-family: sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f0f0f0;
}

h1 {
    text-align: center;
    color: #333;
}

#map {
    width: 100%;
    height: 400px;
    background-color: #ddd;
    margin-bottom: 20px;
}

.search-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

button {
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
}

.zip-search {
    display: flex;
    gap: 5px;
}

#zip-code {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#shelter-list {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.shelter-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.shelter-item:last-child {
    border-bottom: none;
}

.shelter-item:hover {
    background-color: #f5f5f5;
}

.shelter-item h3 {
    margin: 0 0 5px 0;
}

.shelter-item p {
    margin: 0;
    color: #555;
}

