* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: rgb(243, 243, 243);
}

h2 { 
    color: black;
    font-size: 4em;
    font-family: "Brush Script MT";
    margin: 5px;
}

/* Style the side navigation */
.sidenav {
  height: 100%;
  width: 200px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
}


/* Side navigation links */
.sidenav a {
  color: white;
  padding: 16px;
  text-decoration: none;
  display: block;
}

/* Change color on hover */
.sidenav a input:hover {
  background-color: #ddd;
  color: black;
}

.sidenav a button {
    float: right;
    margin-right: 18px;
}

/* Style the content */
.content {
  margin-left: 200px;
  padding-left: 10px;
}

input {
  margin: 2px;
  padding: 5px;
}

.calendar-container {
    display: grid;
    /* Creates 7 columns, each taking up an equal fraction (1fr) of the available space */
    grid-template-columns: repeat(7, 1fr);
    /* Creates 5 rows, each taking up an equal fraction (1fr) of the available space */
    grid-template-rows: repeat(5, 1fr);
    /* Optional: Adds a gap between grid items for better visual separation */
    gap: 1px;
}

/* Optional: styling for the individual grid items */
.calendar-container div {
    background-color: white;
    border: 1px solid black;
    padding: 5px;
    text-align: center;
}

.calendar-container div .dow {
    font-size: 12px;
    font-weight: bold;
    color: black;
}

.calendar-container div .date {
    font-size: 12px;
    font-weight: bold;
    color: blue;
    padding-top: 10px;
}

.calendar-container div .dayperiod {
    font-size: 12px;
    font-weight: bold;
    color: red;
    padding-top: 10px;
}

.calendar-container div label {
    display: block;
}

.calendar-container div.current-month {
    background-color: rgb(238, 248, 240);
}

.calendar-container div.current-day {
    background-color: rgb(171, 244, 185);
}

.calendar-container div.calendar-cell {
    height: 75px;
}

input.input {
    width: 150px;
}