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;
}

.custom-navbar {
  background-color: #1c1f23;
  padding: 20px;
}

.custom-navbar > .container,
.custom-navbar > .container-fluid,
.custom-navbar > .container-sm,
.custom-navbar > .container-md,
.custom-navbar > .container-lg,
.custom-navbar > .container-xl,
.custom-navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
}

a.nav-button {
  color: #d62342;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 8px #c3c3c3;
  transition: 0.2s;

  display: block;
  padding: 8px 35px;
}

li.nav-button {
  margin: 5px;
}

a.nav-button:hover {
  color: white;
  font-weight: bolder;
  background-color: #d62342;
  box-shadow: 0 0 8px 3px #9a9a9a;
}

.navbar-buttons {
  list-style: none;
  display: flex;
  flex-direction: row;
  
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 10px;

  padding: 0 0 0 0;
  margin: 0 0 0 0;
}

a.navbar-logo {
  font-size: 22px;
  font-weight: bold;
  color: #1c1f23;
  text-decoration: none;

  background-color: white;
  box-shadow: 0 0 10px #e1e1e1;
  transition: 0.25s;

  display: block;
  padding: 8px 35px;
  margin-right: 35px;
}

a.navbar-logo:hover {
  color: white;
  background-color: #1c1f23;
  box-shadow: 0 0 15px #5e5e5e;
}

.table-database {
  width: 100%;
  tbody {
    
  }
  th {
    color: white;
    font-weight: bolder;
    background-color: #d62342;
    
    height: 65px;
    text-align: center;
    border: 5px solid;
    border-radius: 10px;
    box-shadow: 0 0 12px #c3c3c3;
  }
  
  tr {
    padding: 10px 0;
    text-align: center;
  }
  
  tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  }
}

#map {
  width: 100%;
  min-height: 90vh;
  height: 100%;
  
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.form-query{
  width: 20em;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 20px;
}

#quety-data {
  display: flex;
  flex-direction: row;
}