* {
  padding: 0;
  margin: 0;
  box-sizing: border-box; /* Add this for better box-sizing */
}

#full-screen-slider {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 470px;
  position: relative;
}

#slides {
  display: block;
  width: 100%;
  height: 100%; /* Change this to 100% for better compatibility */
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

#slides li {
  display: block;
  width: 100%;
  height: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0; /* Add this to ensure slides start at the top */
  left: 0; /* Add this to ensure slides start at the left */
}

#slides li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  text-indent: -9999px;
}

#pagination {
  display: flex; /* Change this to flex for better alignment */
  list-style: none;
  position: absolute;
  left: 50%; /* Change this to center horizontally */
  transform: translateX(-50%); /* Add this to center horizontally */
  bottom: 20px; /* Change this to add some space at the bottom */
  z-index: 9999;
  padding: 0;
  margin: 0;
}

#pagination li {
  display: block;
  list-style: none;
  width: 10px;
  height: 10px;
  margin: 0 5px; /* Change this to add some space between bullets */
  border-radius: 5px;
  background: #FFF;
  cursor: pointer; /* Add this for better usability */
}

#pagination li.current {
  background: #0092CE;
}
