@import url(https://fonts.googleapis.com/css2?family=Public+Sans: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&display=swap);
* {
  font-family: "Public Sans", sans-serif;
}

:root{
  --star-inactive-color: rgb(177, 174, 174);
  max-width: 100vw;
}

li.ant-rate-star.ant-rate-star-zero div{
    color: var(--star-inactive-color)!important
}

li.ant-rate-star-half{
  & div:nth-of-type(2){
    color: var(--star-inactive-color)!important;
  }
}
.custom-pagination .page-link {
  background-color: blue;
  color: white;
  border-color: blue;
}

/* Active state for the current page */
.custom-pagination .page-link.active {
  background-color: darkblue;
  color: white;
}

/* Hover state */
.custom-pagination .page-link:hover {
  background-color: lightblue;
  color: white;
}

/* Style all dots with a light gray border */
.react-multi-carousel-dot button {
  border: 2px solid #808183 !important; /* Light gray border */
  background-color: transparent !important; /* No fill for inactive dots */
}

.react-multi-carousel-dot--active button {
  background-color: rgba(0, 0, 0, 0.5) !important;
}

/* Add this at the end of your existing App.css file */
@media (max-width: 464px) {
  .react-multi-carousel-item {
    display: flex;
    justify-content: center;
  }
}
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%; /* Adjust the initial position off-screen */
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transition: left 0.3s ease-in-out; /* Transition for left property */
}

.mobile-nav.open {
  left: 0; /* Slide in from left to right when open */
  z-index: 1000;
}

.close-button,
.open-button {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  outline: none;
}

.close-button {
  float: right;
  margin: 10px;
}

.open-button {
  width: 100%;
  background-color: #222;
  padding: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  cursor: pointer;
}

.user-profile-picture {
  width: 70px;
  height: 70px;
  border-radius: 50%; /* Makes it circular */
  background-color: white;
  border: 2px solid white; /* Outer white border */
  position: relative;
}

.user-profile-picture:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 50%;
  border: 2px solid rgb(241, 241, 241); /* Inner grey border */
}

