.container {
  max-width: 800px;
  margin: 0rem auto;
  font-family: Arial, sans-serif;
}

.title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.planner {
  display: flex;
  margin-top: 16px;
}

.timeColumn {
  width: 80px;
}
/*
.timeSlot {
  height: 60px;
  border-bottom: 1px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--plannerTimeSlot-bg-color);
  font-size: 14px;
}
*/
.timeSlot {
  height: 60px;
  border-bottom: 1px solid rgba(209, 213, 219, 0.4); /* subtle border */
  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--plannerTimeSlot-bg-color);
  backdrop-filter: blur(2px);

  font-size: 14px;
  font-weight: 500;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.currentTime {
  background-color: rgba(59, 130, 246, 0.08); /* light blue highlight */
  font-weight: 600;
  color: var(--plannerTimeSlot-currenttime-color);
  border-left: 4px solid #3b82f6;
}

.grid {
  flex: 1;
  position: relative;
  height: 960px;
  background-color: var(--plannerTimeGrid-bg-color);
}

.currentTimeLine {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--plannerCurrentTime-color);
  z-index: 10;
}

@media (max-width: 1399px) {
  .container {
    margin: 0.5rem auto;
  }
}

@media (max-width: 1099px) {
  .container {
    margin: 1rem auto;
  }
}

/*MOBILE*/
@media (max-width: 768px) {
  .container {
    margin: 3rem auto;
  }
}

/* MOBILE */
@media (max-width: 399px) {
  .container {
    margin: 4rem auto;
  }
}