.items{
  margin-top: 60px;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.item {
  min-width: calc(33.33% - 30px);
  max-width: calc(33.33% - 30px);
  text-align: initial;
  background-color: #6b060e;
  margin: 15px;
  padding: 15px;
  position: relative;
  border-radius: 10px;
}
.item-button {
  color: black !important;
}
.name {
  color: yellow !important;
  display: block;
  font-size: 25px !important;
  text-transform: none;
  color: black;
  font-family: "Overlock",sans-serif;
  font-weight: 900;
}
.free {
  color: green;
}
.reserved {
  color: red;
}
.phone-number a{
  text-decoration: underline;
  color: black;
}
.offline {
  color: black;
}
.image {
  text-align:center;
  margin-top:10px
}
.image img {
  width: 100%;
  max-width: 190px;
  border-radius: 20px;
}
.aliases-item-description {
  text-align: center;
  display: -webkit-box;
  min-height: 4lh;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
.button-container {
  margin-top: 20px;
  text-align: center;
  color: #F4E8C1;
  text-transform: uppercase;
  display: block;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  margin-top: 20px;
  padding: 10px;
  letter-spacing: 0.1em;
  background-color: #F4E8C1;
  color: #222222;
  border-radius: 5px;
}

.pagination-wrapper {
    all: initial;
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    font-family: inherit !important;
}

.pagination-wrapper * {
    all: unset;
    cursor: pointer;
}

.pagination-wrapper a,
.pagination-wrapper span {
    display: inline-block !important;
    padding: 5px 10px !important;
    font-size: 16px !important;
}
.pagination .active{
  display: inline-block;
  text-align: center;
  background-color: white;
  border-radius: 50%;
}
.pagination a.active:hover{
  color: #550934;
}
.navbtn {
  margin-left: 10px;
  margin-right: 10px;
}
.search-input{
  margin: 10px;
  background-color: #F4E8C1 !important;
  border-radius: 8px !important;
  border: none !important; /* optional, removes the default border */
  padding: 8px 12px !important; /* optional, gives it some breathing room */
}
@media (max-width: 767px) {
  .item {
      min-width: calc(100% - 30px);
      max-width: calc(100% - 30px);
  }
}