body {
    font-family: 'Arial', sans-serif;
    background-color: #f1f1f1; 
    margin: 0;
    padding: 0;
    color: #333;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-size: 2.5em;
    color: #e60012; 
}


.search-container {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    padding: 20px;
    width: 350px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.search-container label {
    font-size: 1.1em;
    margin-bottom: 5px;
    color: #555;
}

.search-container input[type="text"] {
    width: 82%;
    padding: 8px 12px; 
    margin: 8px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1em;
    transition: border-color 0.3s;
    padding-left: 40px;
}


.search-container input[type="text"] {
    background: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/svgs/solid/search.svg') no-repeat 10px center;
    background-size: 20px 20px;
}


.search-container input[type="text"]:focus {
    border-color: #e60012; 
    outline: none;
}


.search-container button {
    width: 100%;
    padding: 10px;
    background-color: #e60012;
    border: none;
    color: white;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-container button:hover {
    background-color: #c70011; 
}


.search-container button i {
    margin-right: 10px;
}


#loading, #no-results {
    text-align: center;
    font-size: 1.2em;
    color: #555;
    display: none;
}


#map {
    height: 500px;
    width: 100%;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.leaflet-popup-content a {
    color: #e60012;
    text-decoration: none;
    font-weight: bold;
}

.leaflet-popup-content a:hover {
    color: #c70011; 
}


@media (max-width: 768px) {
    .search-container {
        width: 100%;
        padding: 15px;
    }

    h1 {
        font-size: 2em;
    }
}
