/* * Always set the map height explicitly to define the size of the div element
 * that contains the map. 
 */
body {
  margin: 0;
  padding: 0;
}

/* Search bar styles */
#search-container {
  position: absolute;
  z-index: 5;
  top: 12px;
  left: 12px;
  gap: 8px;
  background: rgba(255,255,255,0.92);
  padding: 8px;
  border-radius: 6px;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
#location-search {
  width: 240px;
  padding: 6px 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
#search-btn {
  padding: 6px 10px;
  border: none;
  background: #1976d2;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}
#search-btn:active { transform: translateY(1px); }
#search-status { margin-left: 8px; font-size: 0.9em; color: #333; }

.textContainer {
    background-color: #4d90fe;
    margin: 10px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 10px;
    border: 1px solid white;
    border-radius: 10px;
    padding: 5px;
    z-index: 1000;
    color: white;
}

.detailsContainer {
    background: rgba(255,255,255,0.92);
    padding: 8px;
    border-radius: 6px;
    overflow: hidden;
    position: absolute;
    top: 100px;
    left : 12px;
    z-index: 5;
    display:none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.pac-controls {
    display: inline-block;
    padding: 0px 11px;
}

.pac-controls label {
    font-family: Roboto;
    font-size: 13px;
    font-weight: 300;
}

#pac-container {
    padding-top: 4px;
    padding-bottom: 4px;
    border-radius: 2px;
    width: 412px;
}

#pac-input {
    background-color: #fff;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 300;
    margin-left: 12px;
    padding: 0 11px 0 13px;
    text-overflow: ellipsis;
    width: 400px;
}

#pac-input:focus {
    border-color: #4d90fe;
}

#place-autocomplete-card {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin: 10px;
    padding: 5px;
    font-family: Roboto, sans-serif;
    font-size: large;
    font-weight: bold;
}

gmp-place-autocomplete {
    padding-left: 10px;
    width: 405px;
    z-index: 100;
}