body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: #333;
}
.container {
    display: flex;
    flex-direction: column;
    height: 100%;
}
header {
    background-color: #4285F4;
    color: white;
    padding: 1rem;
    text-align: center;
}
main {
    display: flex;
    flex: 1;
}
#map-container {
    flex: 2;
    position: relative;
}
#map {
    height: 100%;
}
#info-panel {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background-color: #f8f9fa;
    position: relative;
}
.controls {
    margin-top: 1rem;
}
button {
    background-color: #4285F4;
    color: white;
    border: none;
    padding: 8px 12px;
    margin: 4px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}
button:hover {
    background-color: #3367D6;
}
input[type="text"] {
    width: calc(100% - 16px);
    padding: 8px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}
th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
th {
    background-color: #f2f2f2;
    font-weight: bold;
}
tr:nth-child(even) {
    background-color: #f8f8f8;
}
td input[type="text"] {
    width: 100%;
    box-sizing: border-box;
}
#address-search {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    z-index: 1000;
}
@media (max-width: 768px) {
    main {
        flex-direction: column;
    }
    #map-container, #info-panel {
        flex: none;
        height: 50vh;
    }
    #address-search {
        width: calc(100% - 20px);
        left: 10px;
        transform: none;
    }
}
