#map {
    height: 400px; 
    width: 700px; /* Kartes augstums */
  }

  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Navbar Styles */
.navbar {
    background-color: #2c3e50;
    color: white;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.navbar .nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.navbar .nav-links a:hover {
    color: #1abc9c;
}

/* Main Content */
.content {
    padding: 2rem;
    text-align: center;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}
.nb { 
    background-color: red; 
    color: white; 
    padding: 10px; /* Add some padding for better readability */
    margin-left: 0px;
  }

  .dropdown-container {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .dropdown-container label {
    margin-right: 10px;
    font-weight: bold;

  }

  .dropdown-container select {
    margin-right: 20px;
    padding: 5px;
    font-size: 14px;
  }

  .tables-container {
    display: flex;
/*     justify-content: space-between; /* Līdzsvaro tabulas horizontāli */
 /*    gap: 20px; Attālums starp tabulām */
  }
  
  .table {
    /* width: 78%; Lai katra tabula aizņemtu pusi no platuma */
    /* border: 1px solid black; /* Pievieno robežas tabulām (var pielāgot pēc vajadzības) */
    padding: 0px; /* Pievieno nelielu iekšējo atstarpi */
  }

  @media (max-width: 868px) {
    .tables-container {
      flex-direction: column; /* Ja ekrāns ir šaurāks, tabulas tiek novietotas viena virs otras */
    }
  }