body {
    font-family: sans-serif;
    background: #f9f9f9;
    margin: 0;
    padding: 0;
    text-align: left;
}

.calendar-container {
    max-width: 320px;
    margin: 0 auto;
    padding: 10px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    font-weight: bold;
    font-size: 16px;
}

.calendar-header button,
#goToday {
    background-color: #eeeeee;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

#goToday:hover,
.calendar-header button:hover {
    background-color: #ddd;
}

#calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    font-size: 14px;
    text-align: center;
}

.day {
    border: 1px solid #ccc;
    padding: 10px 0;
    background: white;
}

.saturday {
    color: blue;
}

.sunday {
    color: red;
}

.today {
    background: yellow;
    font-weight: bold;
}

.holiday {
    color: red;
    font-weight: bold;
}

#holidaySummary {
    margin-top: 20px;
    text-align: left;
}

#fullHolidayList {
    margin-top: 20px;
    text-align: left;
}

#currentTimeContainer {
  background-color: #eeeeee; /* 연한 하늘색 */
  padding: 12px;
  margin-top: 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

h2{
  font-size: 1.5rem;
  padding-left: 15px;
  text-align: left;
  
  padding: 5px 10px;
  border-bottom:1px solid #848484;
  border-left:8px solid #848484;

}

#toc-container ul {
    list-style: none;
    padding-left: 0;
}

#toc-container ul li a {
    text-decoration: none;
    color: #007acc;
}

#toc-container ul li a:hover {
    text-decoration: underline;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background-color: #f8f8f8;
  border-bottom: 1px solid #ddd;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

footer {
    font-family: sans-serif;
    background: #f9f9f9;
    margin: 0;
    padding: 0;
    text-align: center;
}





