body {
    margin: 0;
    min-height: 100vh;
    font-family: "SUIT Variable", "Pretendard Variable", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
    color: #111111;
    background: #ffffff;
}

* {
    box-sizing: border-box;
}

.update-note-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 16px 20px;
}

.table-wrapper {
    overflow-x: auto;
}

.update-note-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 14px;
}

.update-note-table th {
    padding: 9px 10px;
    border: none;
    border-bottom: 2px solid #ebebeb;
    background: none;
    font-size: 12px;
    font-weight: 600;
    color: #666666;
    white-space: nowrap;
    text-align: center;
}

.update-note-table td {
    padding: 10px;
    border: none;
    border-bottom: 1px solid #f2f2f2;
    text-align: left;
    vertical-align: top;
    line-height: 1.5;
    word-break: keep-all;
}

.update-note-table .date-col,
.update-note-table td:first-child {
    width: 108px;
    text-align: center;
    white-space: nowrap;
    color: #666666;
}

@media (hover: hover) {
    .update-note-table tbody tr:hover td {
        background-color: #fafafa;
    }
}

@media (max-width: 768px) {
    .update-note-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .update-note-table {
        font-size: 13px;
    }

    .update-note-table td {
        padding: 10px 8px;
    }
}
