/* WRAPPER */
.pagination-space {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 20px 0;
  list-style: none;
}

/* LI */
.pagination-space li {
  display: inline-block;
}

/* LINK */
.pagination-space li a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, #5a2d91, #3e1f6b);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 6px 12px rgba(90,45,145,0.25);
  transition: all 0.25s ease;
}

/* HOVER */
.pagination-space li:not(.active):not(.disabled) a:hover {
  background: linear-gradient(145deg, #6f3bc0, #4c2596);
  transform: translateY(-2px);
}

/* ACTIVE – OREN */
.pagination-space li.active a {
  background: linear-gradient(145deg, #ffb347, #ff8c00);
  color: #2b124d;
  font-weight: 600;
  box-shadow:
    0 0 0 6px rgba(255,165,0,0.18),
    0 10px 20px rgba(255,140,0,0.6);
  pointer-events: none;
}

/* DISABLED */
.pagination-space li.disabled a {
  background: #cfc6dd;
  color: #8a7fa0;
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
}


/* Select button*/
#spot-row select {
  padding: 10px 16px;
  
  font-size: 14px;
  min-width: 180px;
  border-radius: 6px;          /* nyambung search */
  border: none;
  background-color: #ffffff;
  color: #3e1f6b;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  cursor: pointer;
}

/* hover */
#spot-row select:hover {
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}

/* focus */
#spot-row select:focus {
  outline: none;
  box-shadow:
    0 0 0 2px rgba(255,193,7,0.35),
    0 6px 18px rgba(0,0,0,0.15);
}

/*end of select button*/
.search-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;          /* KUNCI RESPONSIVE */
  width: 100%;
}

/* INPUT */
.search-wrap input[type="text"] {
  width: 100%;          /* RESPONSIVE */
  max-width: 320px;     /* BATAS DESKTOP */
  padding: 12px 18px;
  border-radius: 30px;
  border: none;
  font-size: 14px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  box-sizing: border-box;
}


.search-wrap input[type="text"]::placeholder {
  color: #999;
}

/* FOCUS */
.search-wrap input[type="text"]:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255,193,7,0.35);
}

/* BUTTON */
.search-wrap input[type="submit"] {
  padding: 12px 22px;
  border-radius: 15%;
  border: none;
  background: #ffc107;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

/* HOVER BUTTON */
.search-wrap input[type="submit"]:hover {
  background: #ffb300;
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .search-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .search-wrap select,
  .search-wrap input {
    width: 100%;
  }
  .search-wrap input[type="text"] {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .pagination-space {
    gap: 6px;
  }

  .pagination-space li a {
    box-shadow: 0 4px 8px rgba(90,45,145,0.25);
  }
}


.clearfix{
  content: "";
  display: block;
  clear: both;
}