  /* Extra small devices (phones, 600px and down) */
  @media only screen and (max-width: 600px) {
    .example {background: red;}
  }
  
  /* Small devices (portrait tablets and large phones, 600px and up) */
  @media only screen and (min-width: 600px) {
    .example {background: green;}
  }
  
  /* Medium devices (landscape tablets, 768px and up) */
  @media only screen and (min-width: 768px) {
    .example {background: blue;}
  } 
  
  /* Large devices (laptops/desktops, 992px and up) */
  @media only screen and (min-width: 992px) {
    .example {background: orange;}
  } 
  
  /* Extra large devices (large laptops and desktops, 1200px and up) */
  @media only screen and (min-width: 1200px) {
    .example {background: pink;}
  }
  
  /* --------------------------------------------------------- */
  
  /* Općenite postavke tijela stranice*/
    body{
      width: 100%;
      height: 100%;
      font-family: Arial, Helvetica, sans-serif;
      font-size: medium;
      background-color: whitesmoke;
    /*  overflow: hidden; */
    }  
  
    /* svi pravokutnici sa dodacima margina*/
  *{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  /* svi iframe bez okvirnih linija*/
  iframe{
    border: none;
  }
   


.prist{
  width:100%;
  height: 90%;
  display: grid;
  grid-template-columns: 100px auto;
  grid-template-rows: auto;
  background-color: whitesmoke;
  padding: 5px;
}


.redbr{
  display: grid;
  gap: 10px;
  grid-template-rows: 15% 15% 15% 55%;
  grid-template-columns:auto;
  text-align: left;
  margin-right: 3px;
  background-color: whitesmoke;
}





.redbroj{

  color: gray;
  padding: 5px;

  background-color: whitesmoke;
  border: solid thin gray;
  text-align: left;
}



.pristup{
  width:100%;
  height: 90%;
  display: grid;
  grid-template-columns: 40px 70px auto;
  grid-template-rows: auto;
  background-color: whitesmoke;
  padding: 5px;
}

.osobine{
  display: grid;
  gap: 10px;
  grid-template-rows: 15% 15% 15% auto;
  grid-template-columns:auto;
  text-align: left;
  background-color: whitesmoke;
  
}

.osobroj{
  width: 100%;
  color: black;
  padding: 5px;
  margin-bottom: 5px;
  background-color: white;
  border: solid thin gray;
  text-align: left;
  font-size: medium;
}

.osobroj_1{
  width: 100%;
  color: black;
  padding: 5px;
  margin-bottom: 5px;
  background-color: white;
  border: solid thin gray;
  text-align: left;
  font-size: small;
}





.osobroj10{
  width: 100%;
  color: black;
  padding: 5px;
  background-color: white;
  border: solid thin gray;
  text-align: left;
  font-size: medium;
}







.paragr{
 text-align: justify;
 margin-right: 10px;
 margin-left: 30px;
}

.slanje{
display: grid;
grid-template-columns:47% auto 47%;
margin: 5px;
}

.slanje_misljenje{
  display: grid;
  grid-template-columns:30% auto 30%;
  height: 33px;
  border: thin gray solid;
  margin: 5px;
  }


.centrirano{
text-align: center;

}