/* 部屋・時間帯選択グリッド */
.srt-grid-wrapper {
  overflow-x: auto;
  max-width: 100%;
}

.srt-grid-table {
  border-collapse: separate;
  border-spacing: 0;
  white-space: nowrap;
  font-size: 12px;
}

/* 使用場所ヘッダー（sticky左列） */
.srt-room-header {
  position: sticky;
  left: 0;
  z-index: 2;
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
  border-left: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
  border-right: 2px solid #adb5bd;
  padding: 4px 8px;
  min-width: 100px;
  text-align: center;
}

/* 使用場所セル（sticky左列） */
.srt-room-name {
  position: sticky;
  left: 0;
  z-index: 1;
  background-color: #fff;
  border-left: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
  border-right: 2px solid #adb5bd;
  padding: 4px 8px;
  min-width: 100px;
  font-weight: bold;
}

/* 日付ヘッダー */
.srt-date-header {
  background-color: #e9ecef;
  border-top: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
  padding: 4px 2px;
  text-align: center;
  font-weight: bold;
}

/* 時間帯ヘッダー (AM/PM) */
.srt-hour-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
  padding: 4px 6px;
  text-align: center;
  min-width: 56px;
  width: 56px;
  font-weight: bold;
}

/* 時間帯セル (AM/PM) */
.srt-cell {
  border-bottom: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
  padding: 0;
  min-width: 56px;
  width: 56px;
  height: 36px;
  cursor: pointer;
}

/* 予約済みセル */
.srt-reserved {
  background-color: #999;
}

/* 選択済みセル */
.srt-selected {
  background-color: #5b9bd5;
}

/* 予約済み + 選択済みの複合 */
.srt-reserved.srt-selected {
  background: repeating-linear-gradient(
    45deg,
    #5b9bd5,
    #5b9bd5 4px,
    #999 4px,
    #999 8px
  );
}

/* 情報表示 */
.srt-info {
  font-size: 14px;
}
