*{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}
.container-row{
    display: flex;
    flex-direction: row;
}
.container-column{
    display: flex;
    flex-direction: column;
}
.center{
    margin: 0 auto;
    max-width: 1100px;
}
.shadow{
    box-shadow: 1px 1px 20px rgb(227, 227, 227);
}
header{
    margin-top: 40px;
}
header figure{
    max-width: 200px;
}
header figure img{
    width: 100%;
}
#figure-login-holder{

    justify-content: space-between;
    align-items: center;
}
nav{
    padding: 5px 0;
    width: 100%;
    box-shadow: 1px 1px 5px rgb(214, 214, 214);
    border: 1px solid gray;
}
#links-holder{
    justify-content: space-around;

}
#links-holder a{
    text-decoration: none;
    color: black;
    font-weight: 700;
}

footer{
    background-color: rgb(216, 216, 216);
    min-height: 200px;
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
}
#francetv-container{
    display: flex;
    justify-content: end;
    align-items: center;
    max-width: 1100px;
    width: 100%;
}
#francetv-container h4{
    color: gray;
    padding-right: 30px;
}

#unos-container{
    min-height: 200px;
    margin-top: 20px;
    margin-bottom: 20px;
}
#unos-container form{
    margin: 0 auto;
    width: 50%;
    padding: 20px;
}
#unos-container form label{
    margin-top: 10px;
}
#checkbox-div input{
    margin-left: 20px;
    margin-top: 10px;
}
#submit-button{
    margin-top: 50px;
}

.clanak-naslov{
    text-align: center;
    padding:20px 20%;
}
.clanak-sazetak{
    text-align: center;
    padding:20px 20%;
    color: gray;
}
.clanak-figure{
    margin: 0 auto;
    width: 90%;
}
.clanak-figure img{
    width: 100%;
}
.clanak-tekst{
    margin: 20px auto;
    width: 90%;
    line-height: 1.5;
}
.drzac-reda{
    margin: 25px auto;
}
.novosti-red{
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.drzac-novosti{
    width: 20%;
    display: flex;
    flex-direction: column;
}
.drzac-novosti a{
    text-decoration: none;
    color: black;
}
.figure-novost{
    width:100%;
}
.figure-novost img{
    height: 150px;
    width:100%;
}

.dropbtn {
    background-color: white;
    font-weight: 700;
    font-size: 16px;
    border: none;
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
    .dropdown-content button {
        min-width: 160px;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border: none;
    background-color: unset;
  }

  .dropdown-content button:hover {background-color: #ddd;}
  
  .dropdown:hover .dropdown-content {display: block;}

  #registracija-container{
    text-align: center;
    width: 90%;
    margin: 0 auto;
    padding: 10% 0 ;
  }
  #registracija-container table{
    margin: 0 auto;
  }
  #registracija-container table td{
    padding: 10px 5px;
  }
  #prijava{
    padding: 10px 20px;
  }
  #registracija-container h2{
    margin-top: 30px;
  }

  #odjava-link{
    color: black;
  }

  #uredjivanje-container{
    box-shadow: 1px 1px 2px black;
    background-color: white;
    min-height: 200px;
    margin: 50px auto;
    width: 50%;
  }

  #uredjivanje-container form *{
    margin-bottom: 20px;
  }
  #login-button button{
    padding: 5px 10px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    box-shadow: 2px 1px 5px black;
  }
  
  @media screen and (max-width:600px){
    #figure-login-holder h4{
        font-size: 10px;
    }
    .clanak-naslov{
        font-size: 17px;
    }
    .kategorija-novosti h2{
        text-align: center;
    }
    .novosti-red{
        flex-direction: column;
        align-items: center;
    }
    .drzac-novosti{
        align-items: center;
        width: 80%;
    }
    .drzac-novosti h4{
        text-align: center;
        width: 50%;
    }

    .figure-novost{
        width: 200px;
    }
    .figure-novost img{
        height: 150px;
        width:100%;
    }
  }