.pomtweaks-date-picker {
  display: block;
  width: 100%;
  margin: 0 auto 2rem;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  transition: border-color .3s, box-shadow .3s;
}

.pomtweaks-date-picker:focus {
  border-color: #000;
  box-shadow: 0 0 0 2px rgba(0, 115, 230, 0.2);
  outline: none;
}

.pomtweaks-wcb-availability-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pomtweaks-card {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  overflow: hidden;
  text-align: center;
  padding: 1rem;
}

.pomtweaks-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.pomtweaks-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #333;
}

.pomtweaks-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  justify-items: start;
  margin-bottom: 1.5rem;
}

.pomtweaks-slots label {
  background: #f1f5f9;
  color: #000;
  padding: .4rem .8rem;
  cursor: pointer;
  font-size: .9rem;
  transition: background .3s, color .3s;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  min-height: 25px;
}

.pomtweaks-slots input[type="radio"] {
  display: none;
}

.pomtweaks-slots input[type="radio"]:checked + span,
.pomtweaks-slots label:hover {
  background: #000;
  color: #fff;
}

.pomtweaks-slots label:has(input[type="radio"]:checked) {
  background: #000;
  color: #fff;
}

.pomtweaks-slots label span {
  display: inline-block;
}

.pomtweaks-slots label {
  position: relative;
}

.pomtweaks-slots label::before {
  content: attr(data-time);
  display: inline-block;
}

.pomtweaks-slots label input[type="radio"] + span {
  display: inline;
}

.pomtweaks-slots label input[type="radio"]:checked + span {
  font-weight: bold;
}

.pomtweaks-card a.button {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s;
}

.pomtweaks-card a.button:hover {
  background: #000;
}
