/* Recovered Schedule-only rules for vanilla-extract modules whose generated
   CSS was not present in the snapshot. Keep this file narrow: these selectors
   correspond to explicit exports in Schedule *.css.ts modules. */

.rs-project-row-date-arrow {
  --svg-icon-color: var(--_1gb9yzu7b);
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

.rs-project-sticky-left {
  position: absolute;
  left: 0;
  top: 0;
  height: var(--rs-project-row-height);
  width: 0;
  z-index: 300;
  pointer-events: none;
}

.rs-project-sticky-left-inner {
  height: var(--rs-project-row-height);
  display: flex;
  align-items: center;
  pointer-events: auto;
}

.rs-project-sticky-right {
  position: sticky;
  right: 0;
  top: 0;
  height: 0;
  z-index: 300;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.rs-project-sticky-inner {
  align-items: center;
  background: linear-gradient(
    270deg,
    rgba(243, 242, 245, 0) -1.34%,
    var(--_1gb9yzu9) 3.57%,
    var(--_1gb9yzu9) 93.6%,
    rgba(243, 242, 245, 0) 99.71%
  );
  color: var(--_1gb9yzu7b);
  display: inline-flex;
  flex-direction: row;
  font-size: 13px;
  font-weight: 500;
  gap: 5px;
  letter-spacing: 0;
  line-height: 16px;
  padding: 0 6px;
  position: relative;
  pointer-events: auto;
  white-space: nowrap;
}

.rs-project-sticky-inner-default {
  height: 25px;
}

.rs-project-sticky-inner-compact {
  height: 21px;
}

.rs-project-sticky-text {
  align-items: center;
  display: inline-flex;
  max-width: 16ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rs-phase-item-box,
.rs-milestone-item-box {
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: var(--rs-phase-transparent-bg-color, var(--_1gb9yzu6h));
  border: 1px solid var(--rs-phase-border-color, transparent);
  color: var(--rs-phase-color, var(--_1gb9yzu7b));
  z-index: 2;
}

.rs-phase-item-box {
  background: var(--rs-phase-transparent-bg-color, var(--_1gb9yzu6h));
  border-color: var(--rs-phase-border-color, transparent);
}

.rs-phase-item-box:hover,
.rs-milestone-item-box:hover {
  z-index: 4;
}

.rs-phase-cursor-move {
  cursor: move;
}

.rs-phase-cursor-ew-resize {
  cursor: ew-resize;
}

.rs-phase-item-text,
.rs-milestone-item-text {
  align-items: center;
  display: flex;
  font-size: 11px;
  font-weight: 500;
  height: 100%;
  line-height: 11px;
  min-width: 0;
  overflow: hidden;
  padding: 0 6px;
  position: relative;
  text-overflow: ellipsis;
  white-space: nowrap;
  z-index: 1;
}

.rs-phase-item-text[data-pinned="true"],
.rs-milestone-item-text[data-pinned="true"] {
  position: absolute;
  top: var(--rs-phase-text-pinned-top, var(--rs-milestone-text-pinned-top, 0));
}

.rs-phase-item-text[data-isCanceled="true"] {
  text-decoration: line-through;
}

.rs-phase-item-left-resize,
.rs-phase-item-right-resize,
.rs-milestone-item-left-resize,
.rs-milestone-item-right-resize {
  position: absolute;
  top: 0;
  width: 10px;
  height: 100%;
  cursor: ew-resize;
  z-index: 5;
}

.rs-phase-item-left-resize,
.rs-milestone-item-left-resize {
  left: -3px;
}

.rs-phase-item-right-resize,
.rs-milestone-item-right-resize {
  right: -3px;
}

.rs-milestone-item-box {
  background: transparent;
  border-color: transparent;
  color: var(--_1gb9yzu7b);
}

.rs-milestone-item-circle {
  box-sizing: border-box;
  width: 8px;
  min-width: 8px;
  height: 8px;
  margin-left: 6px;
  border-radius: 999px;
  background: var(--rs-milestone-color, var(--_1gb9yzu3u));
  border: 1px solid var(--rs-milestone-border-color, transparent);
}

.rs-milestone-item-text-span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rs-oneoff-item-box {
  position: absolute;
  box-sizing: border-box;
  background: var(--_1gb9yzu1q);
  z-index: 1;
  pointer-events: none;
}

/* ScheduleContextMenu visible-state (_1vvgszrd) must beat the container base
   (_14tiuof1 { pointer-events:none }). In our concatenated real-app.css snapshot
   _14tiuof1 (line ~13582) comes AFTER _1vvgszrd (~13554), so on equal specificity
   `none` wrongly won → the open right-click menu + its overlay became click-through,
   so every click (even outside) fell to the grid and opened Allocation. Recreated
   here (loads last) so the visible menu is interactive again. */
._1vvgszrd {
  visibility: visible;
  pointer-events: auto;
}
._1vvgszrc {
  visibility: hidden;
  pointer-events: none;
}
