
    body {
        font-family: Arial;
        color: #49535e;
        background-color: white;
    }
    
    
    @keyframes flip {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.flip {
  animation: flip 7s infinite;
}

    

    img {
      height: 50px;
    }
    
    img.animated-gif{
  width: 600px;
  height: auto;
}

    .button-container {
      text-align: center;
      margin-top: 20px;
    }

    .button:hover:not(.start) {
      background-color: #dfe5eb;
    }

.bottombar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  padding: 10px;
  text-align: left;
}

/*Chrome*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
    input[type='range'] {
      overflow: hidden;
      width: 150px;
      -webkit-appearance: none;
      background-color: #FFFFFF;
    }
    
    input[type='range']::-webkit-slider-runnable-track {
      height: 10px;
      -webkit-appearance: none;
      color: #49535e;
      margin-top: -1px;
    }
    
    input[type='range']::-webkit-slider-thumb {
      width: 10px;
      -webkit-appearance: none;
      height: 10px;
      cursor: pointer;
      background: #434343;
      box-shadow: -80px 0 0 80px #dfe5eb;
    }

}
/** FF*/
input[type="range"]::-moz-range-progress {
  background-color: #dfe5eb; 
}
input[type="range"]::-moz-range-track {  
  background-color: #49535e;
}

/* IE*/
input[type="range"]::-ms-fill-lower {
  background-color: #dfe5eb; 
}
input[type="range"]::-ms-fill-upper {  
  background-color: #49535e;
}

/* Style for the back to top button */
  #backToTopBtn {
    display: none; /* Hide button by default */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 12px;
    background-color: #dfe5eb;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 10px 20px;
    text-decoration: none;
  }
    .container {
        text-align: center;
        margin-top: 50px;
        margin-left: 50px;
        margin-right: 50px;
        margin-bottom: 50px;
    }
    
    .option {
      cursor: pointer;
      color: #8e3c1e;
      display:inline-block
    }
    
    .option:hover {
      color:#b57c6b;
    }
    
    
    #startScreen {
    margin-top: 75px;
    margin-bottom: 100px;
    }
    
    #selectedScreen {
    
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #49535e; /* Optional: semi-transparent background */
    z-index: 1000; /* Ensure it covers other elements */
}
    
    #listWarn {
      font-size: 12px;
    }
    
    #reviewContent {
      display: inline-block;
    }
    
    .button {
        padding: 10px 20px;
        margin: 10px;
        font-size: 14px;
        cursor: pointer;
        color: #49535e;
        font-family: Arial;
        border: none;
        border-radius: 4px;
        background-color:#f2f7fc;
    }
    .correct {
        background-color: green !important;
        color: white !important;
        padding-top: 10px; /* Adjust as needed */
    padding-bottom: 10px; /* Adjust as needed */
    }
    .incorrect {
        background-color: red !important;
        color: white !important;
        padding-top: 10px; /* Adjust as needed */
    padding-bottom: 10px; /* Adjust as needed */
    }
    .start {
      color: white;
      background-color: #49535e;
    }
    .start:active {
      opacity: 0.5;
    }
    .end {
      color: white;
      background-color: #8e3c1e;
    }
    .end:active {
      opacity: 0.5;
    }
    
    .selection {
      color: #49535e;
      background-color: #f2f7fc;
      padding: 10px;
        margin: 5px;
        font-size: 10px;
        cursor: pointer;
        border: none;
        border-radius: 4px;
    }
    
    #warn {
    color: red;
    }
    #feedback {
        margin-top: 20px;
        font-weight: bold;
        
    }
    /* Styling for the bird selection area */
    #birdSelection {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        padding-top: 20px;
        padding-bottom: 120px;
    }
    .bird {
        margin: 10px;
        cursor: pointer;
        transition: filter 0.3s;
        font-size: 10px;
    }
    .bird img {
        width: 30px;
        height: auto;
        border-radius: 50%;
        object-fit: cover;
    }
    /* Grayscale effect for selected birds */
    .bird.selected img {
        filter: grayscale(100%);
    }
    .preset {
      margin: 12px;
        cursor: pointer;
        transition: filter 0.3s;
        font-size: 10px;
        display: inline-block;
    }
    .preset:active {
      opacity: 0.5;
    }
    .circular-image {
  border-radius: 50%;
  width: 30px; /* Adjust the width as desired */
  height: auto; /* Adjust the height as desired */
  object-fit: cover; /* Ensure the image fills the circular area */
}
    /* Style for answerChoice div */
.answerChoice {
  display: inline-block;
  margin: 10px;
  cursor: pointer;
  font-size: 10px;
}

/* Style for image inside answerChoice div */
.answerChoice img {
  width: 40px; /* Adjust image width as needed */
  height: auto; /* Maintain aspect ratio */
}
    /* Styling for the selected birds list */
    #selectedBirds {
        margin-top: 20px;
        text-align: center;
        flex-grow: 1; /* This will allow the #selectedBirds div to grow and take up the remaining space */
  overflow-y: auto; /* Add scrollbar if content exceeds its height */
  color: white !important;
    }
    /* Styling for the list items in the selected species list */
    #selectedList {
        list-style-type: none; /* Remove bullet points */
        padding: 0; /* Remove default padding */
        max-height: 270px; /* Adjust the height as needed */
  overflow-y: auto; /* This will make the list scrollable */
    }
    #selectedList li {
        margin-bottom: 5px; /* Add some space between list items */
    }
    /* Styling for the search bar */
    #searchBar {
        margin-top: 20px;
        text-align: center;
    }
    #searchInput {
        padding: 8px;
        width: 200px;
        border-radius: 5px;
        border: 1px solid #ccc;
        font-size: 12px;
    }
    .bird-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  .bird-container img {
    max-width: 100px;
    height: auto;
    margin-right: 10px;
  }
  .bird-info {
    display: flex;
    flex-direction: column;
  }
