		*{
 margin : 0;
 padding: 0;
 box-sizing: border-box;
}

body {
    font-family: monospace;
    word-break: keep-all;
    overflow: hidden;
}

.nav-left {
    position: absolute;
    width: 330px;
    height: 100vh;
    border-right: 1px dotted black;

    display: flex;
    flex-direction: column;
}

h1 {
    font-size: 15.5pt;
    font-weight: normal;
    letter-spacing: 5pt;
    color: pink;
    padding-bottom: 20px;
    border-bottom: 1px dotted black;
    padding: 20px;
    background-color: oldlace;
}

a {
    text-decoration: none;
    color: inherit;
}

a:visited {
    text-decoration: none;
    color: inherit;
}

.chocolate {
    color: chocolate;
}

/*CIRCLE*/

.circle-text {
  width: 330px;
  height: 330px;
   position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 20px;
  border-bottom: 1px dotted black;
}

.circle-text svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.circle-text text {
  font-size: 18px;
  fill: #000;
  letter-spacing: 2px;
}

.circle-text svg {
    width: 100%;
    height: 100%;
    overflow: visible;

    /* 12시에서 시작 */
    transform: rotate(-90deg);

    /* 회전 */
    animation: rotateCircle 40s linear infinite;
    transform-origin: center;
}

@keyframes rotateCircle {
    from {
        transform: rotate(-90deg);
    }
    to {
        transform: rotate(270deg);
    }
}

.category-list {
  list-style: none;
  padding-left: 0;
}

.category-list li {
  position: relative;
  padding-left: 1.2em;
  margin-left: 0px;
}

.category-list li::before {
  content: "■";
  position: absolute;
  left: 0;
}

/* 출발 */
.category-list li:nth-child(3)::before {
  color: #2197FF;
}

/* 손가락 */
.category-list li:nth-child(4)::before {
  color: #FF8400;
}

/* 이야기 */
.category-list li:nth-child(5)::before {
  color: #FFD912;
}

/* 메모리 */
.category-list li:nth-child(6)::before {
  color: #00AC17;
}

/* 초대 */
.category-list li:nth-child(7)::before {
  color: #C437E8;
}

/* 그리고 */
.category-list li:nth-child(8)::before {
  color: #A9A9A9;
}

.quote-box {
    flex: 1;
    min-height: 0;
    width: 100%;

    display: flex;
    flex-direction: column;

    background-color: khaki;
}

.quote-content {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    line-height: 20pt;
}

.quote,
.quote-caption {
    padding: 20px;
    font-size: 13pt;
}

.quote {
    padding-bottom: 0;
}

.quote-caption {
    padding-top: 20px;
}

.quote-navigation {
    flex-shrink: 0;

    display: flex;
    justify-content: center;
    gap: 15px;

    width: 100%;
    padding: 15px;
}

.quote-navigation button {
    display: inline-block;

    padding: 0;
    margin: 0;

    border: 0;
    background: transparent;
    color: black;

    font-family: monospace;
    font-size: 13pt;
    line-height: 1;

    cursor: pointer;
}

.nav-right {
    position: absolute;
    right: 0;
    width: 330px;
    height: 100vh;
    border-left: 1px dotted black;

    display: flex;
    flex-direction: column;
}

.today {
    background-color: sandybrown;
    padding: 20px;
    font-size: 13pt;
}

.timetable {
    position: relative; /* 또는 삭제 */

    width: 100%;
    height: 50%;

    background-color: lemonchiffon;
    border-top: 1px dotted black;
    border-bottom: 1px dotted black;
    padding: 20px;
    padding-bottom: 50px;
    font-size: 11pt;
}

.calendar-page {
    display: none;
}

.calendar-page.active {
    display: block;
}

.calendar-title {
    padding: 10px;
    border: 1px dotted black;
    border-bottom: 0;
    text-align: center;
}

.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-top: 1px dotted black;
    border-left: 1px dotted black;
}

.weekday,
.day {
    min-width: 0;
    min-height: 45px;
    padding: 5px;
    border-right: 1px dotted black;
    border-bottom: 1px dotted black;
}

.weekday {
    min-height: auto;
    text-align: center;
}

/* ↓ 여기만 변경 */
.calendar-navigation {
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);

    display: flex;
    gap: 15px;
}

.calendar-navigation button {
    padding: 0;
    border: 0;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.timeline {
    flex: 1;
    overflow-y: auto;
    background-color: gainsboro;
    min-height: 0;
}

ul {
    border-bottom: 1px dotted black;
    padding-bottom: 10px;
    margin: 20px;
}

li {
    margin-left: 30px;
    margin-top: 5px;
}

.content {
    position: absolute;
    width: calc(100% - 660px);
    height: 100vh;
    left: 330px;
    background-color: #f7f7f7;
    padding: 20px;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.content::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.livingroom-intro {
    font-size: 13pt;
    line-height: 20pt;
    margin-top: 30px;
 /*   text-align: center;*/
}

ol {
    font-size: 13pt;
/*    text-align: center;
    list-style-position: inside;*/
}


table {
    width: 90%;
    margin: auto;
}

table, th, tr, td {
    border: 1px dotted black;
    border-collapse: collapse;
}

th, td {
    padding: 5px;
    font-weight: normal;
}
