/* Utility for display none */
.d-none { display: none !important; }
/* Duration picker input tweaks */
.tb-input-picker {
  background: #fff;
  cursor: pointer;
  padding-right: 2.5rem;
}
.tb-duration-icon {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  pointer-events: none;
  color: #a1a5b7;
}
/* Duration Picker Custom Styles */
.tb-duration-panel {
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.10);
  background: #fff;
  display: inline-block;
  padding: 0.5rem;
  z-index: 1000;
}
.tb-duration-row {
  min-height: 180px;
}
.tb-duration-col {
  width: 70px;
  max-height: 180px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.tb-duration-item {
  padding: 8px 0;
  text-align: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  border-radius: 6px;
  margin: 0 2px;
  transition: background 0.18s, color 0.18s;
}
.tb-duration-item.tb-duration-selected {
  background: #FFDFFF;
  color: #7c3aed;
  font-weight: 700;
}
.tb-duration-item:hover {
  background: #f3e8ff;
  color: #7c3aed;
}