.crp-timeslots-box {
  margin-top: 20px;
  padding: 10px;
  border: 1px solid #006b8b;
  border-radius: 10px;
  width: 50%;
}
.slot-item {
  background: #e8f7ff;
  border: 1px solid #dddddd;
  padding: 10px 16px;
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  color: #2b2929;
}
.slot-item:hover {
  background: #006b8b21;
}
.slot-item.disabled {
  background-color: #eee;
  color: #999;
  border: 1px solid #ccc;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.6;
  position: relative;
}

.slot-item.disabled .reserved-label {
  display: inline-block;
  font-size: 12px;
  color: #c00;
  margin-right: 5px;
  font-weight: bold;
}

.timeslot-note {
  font-size: 14px;
  color: #666;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@media (max-width: 600px) {
  div#crp-timeslots-container {
    width: 100%;
  }
}