body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 30px auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

p {
    text-align: center;
    margin-bottom: 20px;
}

section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

#location-input-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#company-location {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

button {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    margin-top: 10px;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #0056b3;
}

#map {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden; /* Ensures map corners are rounded */
}

#search-results, #favorites-list {
    margin-top: 15px;
    min-height: 50px;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 4px;
}

.restaurant-item {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.restaurant-item:last-child {
    margin-bottom: 0;
}

.restaurant-item button {
    margin: 0;
    padding: 5px 10px;
    font-size: 0.9em;
}

.restaurant-item .remove-fav-btn {
    background-color: #dc3545;
}

.restaurant-item .remove-fav-btn:hover {
    background-color: #c82333;
}

.placeholder {
    color: #666;
    font-style: italic;
}
