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

body, html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: #f0f0f0; /* 배경색 추가 */
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 600px; /* 모바일 우선 디자인을 위해 폭 조정 */
    margin: 0 auto;
    padding: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: white; /* 중앙 컨텐츠 배경색 */
}

.header {
    position: relative;
    text-align: center;
    color: white;
    margin: 0; /* 여백 제거 */
    padding: 0; /* 여백 제거 */
}

.header img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0; /* 이미지 위와 좌우의 여백을 제거 */
    padding: 0;
}

.header-text {
    display: none;
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.header p {
    font-size: 1.2em;
}

.date {
    margin-top: 10px;
    font-size: 1.1em;
    font-weight: bold;
}

.progress, .photos {
    margin-top: 20px;
    padding: 20px; /* 섹션 내부 패딩 추가 */
}

.progress h2, .photos h2 {
    font-size: 2em;
    color: #004080;
    margin-bottom: 10px;
}

.highlight {
    color: red;
    font-weight: bold;
}

.chart {
    margin-top: 20px;
}

.chart canvas {
    width: 100%;
    height: 400px; /* 그래프의 높이 조정 */
}

.plan {
    background-color: #f2f2f2;
    padding: 10px;
    margin-top: 10px;
}

.plan ul {
    list-style: none;
    padding-left: 10px;
}

.plan li {
    padding: 5px 0;
}

.photos img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

.vr-button-container {
    text-align: center;
    margin-top: 20px;
    padding: 20px; /* 여백 추가 */
}

.vr-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    color: white;
    background-color: #004080;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.vr-button i {
    margin-right: 10px;
}

.vr-button:hover {
    background-color: #002a60;
    transform: translateY(-2px);
}

.vr-button:active {
    background-color: #001a40;
    transform: translateY(0);
}

/* 추가된 버튼 섹션 */
.button-container {
    text-align: center;
    margin-top: 20px;
}

.button-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.view-button {
    display: inline-block;
    padding: 10px 20px; /* 글자 좌우 여백을 조금 줄였습니다 */
    font-size: 1.2em;
    font-weight: bold;
    color: white;
    background-color: #28a745; /* 초록색 */
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
    flex: 1; /* 모든 버튼이 동일한 폭을 가지도록 설정 */
    text-align: center;
}

.view-button i {
    margin-right: 5px; /* 아이콘과 텍스트 사이의 간격을 조금 줄였습니다 */
}

.view-button:hover {
    background-color: #218838; /* 어두운 초록색 */
    transform: translateY(-2px);
}

.view-button:active {
    background-color: #1e7e34; /* 더 어두운 초록색 */
    transform: translateY(0);
}

/* 미디어 쿼리로 데스크탑 디자인 조정 */
@media (min-width: 768px) {
    .container {
        max-width: 800px; /* 데스크탑에서 최대 폭 조정 */
    }

    .chart canvas {
        height: 600px; /* 데스크탑에서 그래프 높이 조정 */
    }
}
