/* Planner Output Styles */

.planner-page {
  width: 8.5in;
  height: 11in;
  padding: 0.5in;
  background: white;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.planner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.planner-header h1 {
  margin: 0;
  font-size: 28px;
}

.date-box {
  font-size: 16px;
}

.planner-row {
  display: flex;
  gap: 20px;
  flex: 1;
}

.planner-column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.priority-list,
.task-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.priority-list li,
.task-list li {
  border-bottom: 1px solid #ccc;
  height: 22px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

.checkbox {
  width: 14px;
  height: 14px;
  border: 1px solid #666;
  margin-right: 8px;
  display: inline-block;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.schedule-table .header {
  width: 60px;
  border: 1px solid #ccc;
  padding: 4px;
  font-size: 14px;
}

.schedule-table .time {
  width: 60px;
  border: 1px solid #ccc;
  padding: 4px;
  font-size: 14px;
  text-align: right;
}

.schedule-table .slot {
  border: 1px solid #ccc;
  height: 24px;
}

.schedule-name-cell {
  border: 1px solid #ccc;
  width: 140px;
  padding: 4px;
  font-size: 14px;
}

.schedule-day-cell {
  border: 1px solid #ccc;
  width: 20px;
  height: 20px;
  text-align: center; /* horizontal centering */
  vertical-align: middle; /* vertical centering */
}

.schedule-checkbox {
  border: 1px solid #666;
  width: 12px;
  height: 12px;
  display: inline-block; /* works with text-align: center */
  margin-top: 4px; /* adjust as needed for vertical centering */
}

.notes-box {
  border: 1px solid #ccc;
  height: 180px;
}
