.relative {
  position: relative;
}

.flex {
  display: flex;
}

.w-full {
  width: 100%;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.pt-1 {
  padding-top: 0.25rem;
}

.inline-flex {
  display: inline-flex;
}

.gap-2 {
  gap: 0.5rem;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.rounded-md {
  border-radius: 0.375rem;
}

.text-sm {
  font-size: 0.875rem;
}

.font-medium {
  font-weight: 500;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-duration: 150ms;
}

.focus-visible\:outline-none:focus-visible {
  outline: none;
}

.focus-visible\:ring-1:focus-visible {
  box-shadow: 0 0 0 1px var(--ring-color, #3b82f6);
}

.focus-visible\:ring-ring:focus-visible {
  --ring-color: #3b82f6;
}

.disabled\:pointer-events-none:disabled {
  pointer-events: none;
}

.disabled\:opacity-50:disabled {
  opacity: 0.5;
}

.border {
  border-width: 1px;
  border-style: solid;
  border-color: #e5e7eb;
}

.border-input {
  border-color: #e5e7eb;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.hover\:bg-accent:hover {
  background-color: var(--color-accent, #f3f4f6);
}

.hover\:text-accent-foreground:hover {
  color: var(--color-accent-foreground, #111827);
}

.h-7 {
  height: 1.75rem;
}

.w-7 {
  width: 1.75rem;
}

.bg-transparent {
  background-color: transparent;
}

.p-0 {
  padding: 0;
}

.opacity-50 {
  opacity: 0.5;
}

.hover\:opacity-100:hover {
  opacity: 1;
}

.text-\[0\.8rem\] {
  font-size: 0.8rem;
}

.font-normal {
  font-weight: 400;
}

.text-muted-foreground {
  color: #6b7280;
}

.mt-2 {
  margin-top: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.flex-col {
  flex-direction: column;
}

.gap-y-4 {
  row-gap: 1rem;
}

.mt-4 {
  margin-top: 1rem;
}

.sm\:flex-row {
  /* Responsive: handled in next batch */
}

.sm\:gap-x-4 {
  /* Responsive: handled in next batch */
}

.sm\:gap-y-0 {
  /* Responsive: handled in next batch */
}

.w-8 {
  width: 2rem;
}

.text-center {
  text-align: center;
}

.focus-within\:relative:focus-within {
  position: relative;
}

.focus-within\:z-20:focus-within {
  z-index: 20;
}

.first\:\[\&\:has\(\[data-selected\]\)\]\:rounded-l-md:first-child:has([data-selected]) {
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.last\:\[\&\:has\(\[data-selected\]\)\]\:rounded-r-md:last-child:has([data-selected]) {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

.z-50 {
  z-index: 50;
}

.bg-popover {
  background-color: var(--color-popover, #fff);
}

.text-popover-foreground {
  color: var(--color-popover-foreground, #111827);
}

.shadow-md {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.outline-none {
  outline: none;
}

.w-auto {
  width: auto;
}

.data-\[state\=open\]\:animate-in[data-state="open"] {
  animation: animate-in 0.2s both;
}

.data-\[state\=closed\]\:animate-out[data-state="closed"] {
  animation: animate-out 0.2s both;
}

.data-\[state\=closed\]\:fade-out-0[data-state="closed"] {
  opacity: 0;
  transition: opacity 0.2s;
}

.data-\[state\=open\]\:fade-in-0[data-state="open"] {
  opacity: 1;
  transition: opacity 0.2s;
}

.data-\[state\=closed\]\:zoom-out-95[data-state="closed"] {
  transform: scale(0.95);
  transition: transform 0.2s;
}

.data-\[state\=open\]\:zoom-in-95[data-state="open"] {
  transform: scale(0.95);
  transition: transform 0.2s;
}

.data-\[side\=bottom\]\:slide-in-from-top-2[data-side="bottom"] {
  animation: slide-in-from-top-2 0.2s both;
}

.data-\[side\=left\]\:slide-in-from-right-2[data-side="left"] {
  animation: slide-in-from-right-2 0.2s both;
}

.data-\[side\=right\]\:slide-in-from-left-2[data-side="right"] {
  animation: slide-in-from-left-2 0.2s both;
}

.data-\[side\=top\]\:slide-in-from-bottom-2[data-side="top"] {
  animation: slide-in-from-bottom-2 0.2s both;
}

.border-collapse {
  border-collapse: collapse;
}

.space-y-1> :not([hidden])~ :not([hidden]) {
  margin-top: 0.25rem;
}

.h-4 {
  height: 1rem;
}

.w-4 {
  width: 1rem;
}

.font-normal {
  font-weight: 400;
}

.font-semibold {
  font-weight: 600;
}

.gap-x-4 {
  column-gap: 1rem;
}

.gap-y-0 {
  row-gap: 0;
}

.grid {
  display: grid;
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-4 {
  gap: 1rem;
}

.col-span-2 {
  grid-column: span 2 / span 2;
}

.h-8 {
  height: 2rem;
}

.text-xs {
  font-size: 0.75rem;
}

.bg-accent {
  background-color: var(--color-accent, #f3f4f6);
}

.text-accent-foreground {
  color: var(--color-accent-foreground, #111827);
}

.data-\[selected\]\:opacity-100[data-selected] {
  opacity: 1;
}

.data-\[today\]\:bg-accent[data-today] {
  background-color: var(--color-accent, #f3f4f6);
}

.data-\[today\]\:text-accent-foreground[data-today] {
  color: var(--color-accent-foreground, #111827);
}

.data-\[selection-start\]\:bg-primary[data-selection-start] {
  background-color: var(--color-primary, #2563eb);
}

.data-\[selection-start\]\:text-primary-foreground[data-selection-start] {
  color: var(--color-primary-foreground, #fff);
}

.data-\[selection-end\]\:bg-primary[data-selection-end] {
  background-color: var(--color-primary, #2563eb);
}

.data-\[selection-end\]\:text-primary-foreground[data-selection-end] {
  color: var(--color-primary-foreground, #fff);
}

.data-\[outside-view\]\:text-muted-foreground[data-outside-view] {
  color: #6b7280;
}

.data-\[outside-view\]\:opacity-50[data-outside-view] {
  opacity: 0.5;
}

.data-\[disabled\]\:text-muted-foreground[data-disabled] {
  color: #6b7280;
}

.data-\[disabled\]\:opacity-50[data-disabled] {
  opacity: 0.5;
}

.data-\[unavailable\]\:text-destructive-foreground[data-unavailable] {
  color: #dc2626;
}

.data-\[unavailable\]\:line-through[data-unavailable] {
  text-decoration: line-through;
}

.leading-none {
  line-height: 1;
}

.lucide,
.lucide-chevron-left-icon,
.lucide-chevron-left,
.lucide-chevron-right-icon,
.lucide-chevron-right {
  vertical-align: middle;
  display: inline-block;
}

.size-4 {
  width: 1rem;
  height: 1rem;
}

.shrink-0 {
  flex-shrink: 0;
}

.bg-transparent {
  background-color: transparent;
}

.p-0 {
  padding: 0;
}

.font-normal {
  font-weight: 400;
}

.font-semibold {
  font-weight: 600;
}

.text-xs {
  font-size: 0.75rem;
}

.text-accent-foreground {
  color: var(--color-accent-foreground, #111827);
}

.hover\:bg-accent:hover {
  background-color: var(--color-accent, #f3f4f6);
}

.hover\:text-accent-foreground:hover {
  color: var(--color-accent-foreground, #111827);
}

.opacity-50 {
  opacity: 0.5;
}

.hover\:opacity-100:hover {
  opacity: 1;
}

.data-\[outside-view\]\[data-selected\]\:text-muted-foreground[data-outside-view][data-selected] {
  color: #6b7280;
}

.data-\[outside-view\]\[data-selected\]\:opacity-30[data-outside-view][data-selected] {
  opacity: 0.3;
}

.data-\[unavailable\]\:text-destructive-foreground[data-unavailable] {
  color: #dc2626;
}

.data-\[unavailable\]\:line-through[data-unavailable] {
  text-decoration: line-through;
}

@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:gap-x-4 {
    column-gap: 1rem;
  }

  .sm\:gap-y-0 {
    row-gap: 0;
  }
}

/* Target SVGs inside elements with these classes */
[&_*]:pointer-events-none svg,
.pointer-events-none svg {
  pointer-events: none;
}

[&_*]:size-4 svg,
.size-4 svg {
  width: 1rem;
  height: 1rem;
}

[&_*]:shrink-0 svg,
.shrink-0 svg {
  flex-shrink: 0;
}

/* Any remaining font weights */
.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-normal {
  font-weight: 400;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-start {
  justify-content: flex-start;
}
