/* === GLOBAL === */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f5f5f5;
  margin: 0;
  padding: 0;
  padding-bottom: 72px;
}

/* === SCHEDULE GRID === */

.schedule-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.day-header-row {
  display: grid;
  grid-template-columns: 80px repeat(7, 1fr);
  width: 1000px;
  background: #f7f7f7;
  border: 1px solid #323232;
  border-bottom: 1px solid #323232;
  z-index: 5;
  position: relative;
}

.day-header {
  text-align: center;
  font-weight: bold;
  height: 40px;
  line-height: 40px;
  border-left: 1px solid #ddd;
}

.schedule-container {
  display: grid;
  grid-template-columns: 80px 1fr;
  border: 1px solid #323232;
  border-top: none;
  border-bottom: 3px solid #323232;
  background: white;
  width: 1000px;
  height: 800px;
}

.time-column {
  background: #f4f4f4;
  border-right: 1px solid #323232;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #323232;
}

.time-label {
  height: 48.5px;
  line-height: 0;
  text-align: right;
  padding-right: 8px;
  color: #444;
  font-size: 13px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.time-column .time-label:first-child {
  margin-top: 9px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  position: relative;
}

.day-column {
  border-right: 1px solid #eee;
  position: relative;
}

.time-slot {
  height: 12.5px;
  border-bottom: 1px solid #f2f2f2;
  box-sizing: border-box;
}

.hour-line {
  border-bottom: 2px solid #ccc;
}

.block {
  position: absolute;
  background: rgba(100, 181, 246, 0.6);
  border: 1px solid #2196f3;
  border-radius: 4px;
  color: #000;
  font-size: 12px;
  padding: 2px 6px;
  cursor: move;
  box-sizing: border-box;
}

.resize-handle {
  position: absolute;
  height: 6px;
  width: 100%;
  cursor: ns-resize;
  background: transparent;
}

.resize-top    { top: -3px; }
.resize-bottom { bottom: -3px; }

.delete-btn {
  position: absolute;
  top: 2px;
  right: 2px;
  font-size: 10px;
  cursor: pointer;
  background: white;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 1px 3px;
}
