.slots__item.hidden {
  display: none;
}
p.get-image {
    display: flex;
    margin-bottom: 0px!important;
}

.slots__wrapper {
    display: grid;
    gap: 20px;
    margin-top:20px;
    margin-bottom:20px;
}

.slots__image-block {
    display: flex;
    justify-content: center;
}


.slots__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.slots__item {
    overflow: hidden;
    border-radius: 4px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Ensure the content is evenly distributed */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow for better visibility */
    padding:10px;
    align-items:center;
}
.slots__item img {
  max-width: 100%;
  height: auto;
}
.slots__item-content {
    padding: 8px;
}

.slots__item-title {
    margin: 0 auto;
    color: #000;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
}

.slots__button {
    padding: 8px 8px;
    flex-grow: 1;
}
@media (max-width: 800px) {
  .slots__list {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}
.button-slots {
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    background-color: #FFBB01;
    color: #232323;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    transition: opacity 0.3s ease-in-out;
    cursor: pointer;
}
