#boxTable-container a,
#boxTable-container a:hover {
  text-decoration: none;
}

#boxTable-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

#boxTable-container .bonus-box-table {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  height: 155px;
  flex-direction: row;
  background-color: black;
  width: 100%;
}

#boxTable-container .bonus-table-img-container {
  width: 25%;
  text-align: center;
}

#boxTable-container .bonus-table-img-container img {
  object-fit: contain;
  cursor: pointer;
  height: 90px;
}

#boxTable-container .bonus-table-description {
  width: 50%;
  padding: 0 10px;
}

#boxTable-container .bonus-table-title {
  text-transform: uppercase;
  font-size: 15px !important;
  color: white !important;
  text-align: center;
  margin-bottom: 15px;
}

#boxTable-container .bonus-table-offer {
  text-transform: uppercase;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  text-align: center !important;
  margin: 8px 0 !important;
  color: white;
  line-height: 1.25;
}

#boxTable-container .bonus-table-description p {
  margin: 8px 0 !important;
  color: white;
  line-height: 1.25;
  font-size: 15px;
  text-align: center !important;
}

#boxTable-container .buttons-container-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 5px;
  align-items: flex-end;
}

#boxTable-container .btn-table-recenzija,
a.glow-on-hover {
  padding: 8px;
  color: white !important;
  border: 2px solid white;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  width: 160px;
  transition-duration: 0.4s;
}

a.glow-on-hover {
  position: relative;
  border: 2px solid white;
  outline: 2px solid white;
  outline-offset: -2px;
  transition: outline-offset 200ms ease;
}

a.glow-on-hover:hover {
  outline-offset: 3px;
  outline: 1;
}

.glow-on-hover:active {
  transform: scale(0.95);
}

#boxTable-container .btn-table-recenzija:hover {
  background: white;
  color: black !important;
  font-weight: bold;
}

#boxTable-container a {
  color: white !important;
}

#loadMoreBtn {
  margin-top: 10px;
  padding: 4px 8px;
  cursor: pointer;
  margin: 0 auto;
  border: none;
  border-radius: 5px;
}

/* Media Queries */
@media screen and (max-width: 768px) {
  #boxTable-container {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    width: 100%;
  }

  #boxTable-container .bonus-box-table {
    height: 250px;
    flex-direction: column;
    width: 310px;
    align-items: center;
  }

  #boxTable-container .buttons-container-table {
    flex-direction: row;
    width: 95%;
    align-items: center;
    justify-content: center;
  }

  .glow-on-hover,
  #boxTable-container .btn-table-recenzija {
    width: 160px;
  }

  #boxTable-container .bonus-table-img-container,
  #boxTable-container .bonus-table-description {
    width: 95%;
  }

  .terms {
    font-size: 9px;
  }
}

@media screen and (max-width: 450px) {
  #boxTable-container .buttons-container-table {
    flex-direction: column;
    width: 100%;
  }

  #boxTable-container .bonus-box-table {
    height: 380px;
  }
}