        * { box-sizing: border-box; }

        body {
            font-family: 'Apple SD Gothic Neo', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #000000;
            color: #fff;
        }

        .container {
            height: 70%;
            max-width: 800px;
            margin: 100px auto 40px auto; /* 상단 80px, 좌우 auto, 하단 40px */
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            color: black;
        }

        .title-bar {
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 1.8rem;
            font-weight: bold;
            color: #000;
            background-color: #fff;
            padding: 10px 20px;
            border-radius: 10px 10px 0 0;
            height: 50px;
        }

        .title-bar img {
            height: 45px;
        }

.update-entry {
  margin-bottom: 25px;
  border: none; /* 기존 테두리는 제거 */
}

.update-date25 {
  background-color: #507bff;
  color: black;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 10px 15px;
  border-radius: 10px; /* ⭕ 위아래 모두 둥글게 */
  margin-bottom: 5px;  /* 날짜와 내용 간격 */
}

.update-date26 {
  background-color: #df5269;
  color: black;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 10px 15px;
  border-radius: 10px; /* ⭕ 위아래 모두 둥글게 */
  margin-bottom: 5px;  /* 날짜와 내용 간격 */
}

.update-content {
  background-color: #f7e3b9;
  padding: 15px;
  font-size: 0.95rem;
  line-height: 1.6;
  border-radius: 10px; /* ⭕ 위아래 모두 둥글게 */
}