

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
   font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;

}

body {
  background: #f2f2f2;
}

.hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
   background-image: linear-gradient(#1a5a63, #e585a5);
}

.selector {
  width: 320px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
}

#selectfield {
  display: flex;
  justify-content: space-between; 
   align-items: center;
  padding: 14px 16px;
  cursor: pointer;
   background-color:rgb(246, 205, 155);
}

#selectfield p {
  font-size: 16px;
}

#arrowIcon {
  width: 20px;
  transition: transform 0.3s;
}

#arrowIcon.rotate {
  transform: rotate(180deg);
}

#list {
  list-style: none;
  max-height: 250px;
  overflow-y: auto;
  transition: max-height 0.3s ease;
}

#list.hide {
  display: none;
}

.option {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  gap: 12px;
  cursor: pointer;
  transition: backgroud 0.2s;
}

.option:hover {
 background: #f0f0f0;
}
.option img {
  width: 24px;
  height: 24px;
}


@media (max-width: 480px) {
  .selector {
    width: 90%;
  }

  #selectfield p {
    font-size: 14px;
  }

  .option {
    padding: 10px 14px;
  }

  .option img {
    width: 20px;
    height: 20px;
  } 
} 
