body {
    margin: 0;
    background-color: white;
    font-family: 'Times New Roman', Times, serif;

}
.glavninaslov {
    font-size: 250%;
}
.okvir {
   background-color:#4FA7A0;
    height: 100px;
    max-width: 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding: 0 190px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    

}
.vsebina {
    padding: 40px 190px;

}
.naslovi {
    color: #4FA7A0;
}
.zemljevid {
    width: 800px;
    max-width: 100%;
    height: 700px;
    border: 2px solid grey;
    margin-right: 10%;
    margin-top: 8%;
}

.menigumbi {
    display: flex;
    gap: 100px;
}
.meni button {
    background-color: transparent;
    border: none;
    color: #d3d3d3;
    font-size: 16px;
    cursor: pointer;
    padding: 8px 12px;
    transition: color 0.3s;
    font-family: 'Times New Roman', Times, serif;
    white-space: nowrap;
}
.meni {
    display: flex;
    align-items: center;
    gap: 10%;
}

.meni button:hover {
    color: white;
}
.kakovost-naslov {
    text-align: center;
    color: #4FA7A0;
    margin-top: 5%;
}
.kazalnikikakovosti {
    margin-top: 5%;
    margin-left: 10%;
    margin-right: 10%;
    font-size: 150%;
}
ul li {
    margin-bottom: 1%;
    margin-left: 2%;
}
.kazalniki {
    margin-top: 2%;
    margin-left: 10%;
    margin-right: 10%;
    font-size: 150%;
}

.tabela {
    width: 80%;
    max-width: 100%;
    margin: 1.5% auto;
    border-collapse: collapse;
    font-family: 'Times New Roman', Times, serif;
    font-size: 150%;
    text-align: left;
    border: 2px solid black;
   
}
.tabela th, .tabela td {
    border: 2px solid black;
    padding: 10px;
    vertical-align: top;
}
.tabela thead th {
    text-align: center;
}
.besedilo-tabela {
    text-align: center;
}
.logo {
    width: 5.8%;
    margin-left: 0%;
    margin-right: 1.5%;
}
.logo-in-naslov {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
  }
  
  .mobile-toggle {
    display: none;
    
  }

  @media only screen and (max-width: 768px) {
    .okvir {
      flex-direction: column;
      align-items: flex-start;
      height: auto;
      padding: 10px;
    }

    .meni {
      display: none;
    }
    .mobile-toggle {
        display: flex;
        background-color: transparent;
        border: none;
        color: white;
        font-size: 15px;
        cursor: pointer;
        margin-right: 0;
      }

      .mobile-menu {
        display: none;
        flex-direction: column;
        background-color: #4FA7A0;
        border-radius: 10px;
        padding: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        position: absolute;
        right: 20px;
        top: 90px;
        z-index: 1000;
      }
      .mobile-menu button {
        background-color: transparent;
        border: none;
        color: white;
        font-size: 16px;
        cursor: pointer;
        padding: 6px 0;
        font-family: 'Times New Roman', Times, serif;
        text-align: right;
        white-space: nowrap;
      }
      .mobile-menu button:hover {
        color: #2d6e69;
      }
      
            

    .vsebina {
      flex-direction: column;
      padding: 20px;
      align-items: flex-start;
    }

    .zemljevid {
      width: 100%;
      height: 300px;
      margin-right: 0;
      margin-top: 20px;
    }

    .kazalnikikakovosti, .kazalniki {
      font-size: 120%;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .logo {
      width: 10%;
    }

    .glavninaslov {
      font-size: 140%;
      text-align: left;
      margin-left: -8%;
    }

    h2.naslovi, .kakovost-naslov {
      text-align: left;
      margin-left: 0;
    }

    .okvir .logo-in-naslov,
    .okvir .meni {
      width: 100%;
    }
    .logo-in-naslov {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .kakovost-naslov{
        font-size: 140%;
        margin-top: 10%;
        text-align: center;
    }
   
    
  }