table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  border: 1px solid black;
  padding: 8px;
  text-align: left;
}

th {
  background-color: #f2f2f2;
}


body {
    background-color: #F5A623; /* warm color */
}

#office-list {
    color: #FFFFFF; /* white text */
}

#office-list td {
    border: 1px solid #4DB6AC; /* teal color */
}

#modal {
    display: none; /* hidden by default */
    position: fixed; /* stay in place */
    z-index: 1; /* sit on top */
    left: 0;
    top: 0;
    width: 100%; /* full width */
    height: 100%; /* full height */
    overflow: auto; /* enable scroll if needed */
    background-color: rgb(0,0,0); /* fallback color */
    background-color: rgba(0,0,0,0.4); /* black w/ opacity */
}

#modal-content {
    background-color: #F5F5F5; /* light gray background */
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* width is 80% of the screen */
}

#search-input {
    background-color: #FFFFFF; /* white background */
    border: 1px solid #4DB6AC; /* teal border */
    color: #4DB6AC; /* teal text */
    margin: 10px 0;
}

#search-button {
    background-color: #4DB6AC; /* teal background */
    color: #FFFFFF; /* white text */
    border: none; /* no border */
    margin: 10px 0;
    padding: 10px 20px;
}

#search-button:hover {
    background-color: #00897B; /* teal hover color */
    cursor: pointer;
}

#search-results {
    background-color: #FFFFFF; /* white background */
    border: 1px solid #4DB6AC; /* teal border */
    margin: 10px 0;
    padding: 10px;
}