@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Roboto";
}

body {
  position: relative;
  margin: 0; /* Uklanja default margine */
  background-image: url(img/pexels-nurseryart-3468852.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh; /* Osigurava da pozadina pokrije ekran */
}

.container {
  margin: 0px auto;
  max-width: 800px;
}
.header {
  margin-bottom: 30px;
}

.header .container {
  text-align: center;
}

.header .container h2 {
  color: #fff;
}

.header .container h1 {
  color: rgb(42, 42, 42);
}

#dropMenu {
  width: 200px;
}

#drop_menu input {
  width: 200px;
  border: 1px solid rgb(255, 63, 5);
  border-radius: 4px;
  padding: 5px 10px;
}

#btnCompare {
  margin: 0 15px;
  background-color: rgb(255, 63, 5);
  border-radius: 4px;
  border: 1px solid rgb(255, 63, 5);
  padding: 5px 10px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: 200ms;
  height: fit-content;
}

#btnCompare:hover {
  background-color: #fff;
  color: rgb(255, 63, 5);
}

.main {
  margin-bottom: 40px;
}

.main .container {
  display: flex;
  justify-content: center;
}

/**Drop menu style*/
.dropMenuStyle {
  border: 1px solid rgb(60, 60, 60, 0.5);
  border-radius: 5px;
  margin-top: 5px;
  overflow: hidden;
  height: 180px;
  width: 100%;
  overflow: scroll;
  max-width: 200px;
  background-color: rgba(207, 208, 209, 0.8);
  position: absolute;
}
.dropMenuStyle::-webkit-scrollbar {
  display: none;
}

/**Input disable class*/
.disabled {
  pointer-events: none;
  border-color: grey;
  background-color: rgb(140, 140, 140, 0.1);
}

.select_1 a {
  display: block;
  text-decoration: none;
  color: black;
  padding: 5px 5px;
}

.select_1 a:hover {
  background-color: rgb(255, 63, 5);
  color: #fff;
}

.heroCountry .container {
  display: flex;
  justify-content: center;
  justify-content: space-between;
}

.card_1 {
  border-radius: 5px;
  width: fit-content;
  overflow: hidden;
  margin: 0 10px;
}

.cardBio {
  padding-left: 20px;
  margin-top: 15px;
  background-color: rgba(207, 208, 209, 0.3);
  border-radius: 5px;
}

.cardBio h2 {
  color: rgb(50, 50, 50);
  font-weight: bold;
}

.cardBio h4 {
  color: rgb(70, 70, 70);
}

.cardBio p {
  margin: 5px 0;
}

.cardBio span {
  margin-right: 5px;
}
