html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.sidebar {
    width: 300px;
    overflow-y: auto;
    border-right: 1px solid #ccc;
    padding: 15px;
    background-color: #f8f9fa;
    height: calc(100vh - 200px);
    border-radius: 10px;
    margin: 10px;
}

#mapContainer {
    flex: 1;
    border-radius: 10px;
    overflow: visible;
    margin: 10px;
    display: flex;
    flex-direction: column;
}

#mainMap {
    height: calc(100vh - 250px);
    width: 100%;
    border-radius: 10px;
    flex: 1;
    margin-bottom: 10px;
}

#divAddressLookup {
    padding: 15px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    width: 100%;
}

.recommendationTile {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.recommendationTile:hover {
    background-color: #e9ecef;
}

.recommendationTile h6 {
    margin: 0;
    font-size: 1rem;
}

.recommendationTile p {
    margin: 0;
    font-size: 0.875rem;
    color: #6c757d;
}

.recommendationTile.highlighted {
    background-color: #d1e7dd;
    border-color: #0f5132;
}

.requestTile {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.requestTile:hover {
    background-color: #e9ecef;
}

.requestTile h6 {
    margin: 0;
    font-size: 1rem;
}

.requestTile p {
    margin: 0;
    font-size: 0.875rem;
    color: #6c757d;
}

.requestTile.highlighted {
    background-color: #d1e7dd;
    border-color: #0f5132;
}

#recommendationFilters button {
    margin-right: 5px;
    margin-bottom: 5px;
}

#recommendationFilters button.active {
    background-color: #0f5132;
    border-color: #0f5132;
}

.dropdown-menu-end {
  right: 0;
  left: auto;
}

.dropdown-toggle::after {
  display: none;
}

.navbar .ms-auto {
  margin-left: auto;
}
