body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

header, footer {
    background-color: #f4f4f4;
    text-align: center;
    padding: 1rem;
}

main {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.project-image {
    max-width: 100%;
    height: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

th, td {
    border: 1px solid #ddd;
    padding: 0.5rem;
    text-align: left;
}

th {
    background-color: #f4f4f4;
}

.detail-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

@media (max-width: 768px) {
    main {
        padding: 1rem;
    }
}

.view-surroundings-button {
    display: block;
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    background-color: #4CAF50; /* 녹색 계열 */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}


/* 2024-09-07 hillstate-yiys 적용 css */
.view-surroundings-button:hover {
    background-color: #45a049;
}

.view-surroundings-button i {
    margin-right: 10px;
}


.hashtags-container {
    background-color: #f8f8f8;
    padding: 20px 0;
    margin-top: 30px;
    clear: both; /* 이미지와 버튼의 float 속성을 해제 */
}
.hashtags {
    font-size: 12px;
    color: #888;
    line-height: 1.6;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
#mediaContainer {
    margin-bottom: 0; /* 이미지 컨테이너 아래 마진 제거 */
}

/* 기존 CSS 파일에 추가하거나 수정할 내용 */

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

.view-surroundings-button {
    /* 버튼의 세로 크기 유지 */
    height: 200%;
    /* 가로 방향으로 텍스트 정렬 */
    display: flex;
    justify-content: center;
    align-items: center;
    /* 글자 크기를 더 크게 증가 */
    font-size: 1.5em;
    /* Pretendard Bold 폰트 적용 */
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    /* 버튼 내부 여백을 조정하여 텍스트가 잘 보이도록 함 */
    padding: 20px 10px;
    /* 버튼 주변에 여백을 추가하여 다른 요소와 겹치지 않도록 함 */
    margin: 20px 0;
    /* 줄바꿈 허용 */
    white-space: normal;
    /* 텍스트를 버튼 중앙에 배치 */
    text-align: center;
}

/* 미디어 쿼리를 사용하여 작은 화면에서도 버튼이 잘 보이도록 조정 */
@media (max-width: 768px) {
    .view-surroundings-button {
        height: 150%; /* 작은 화면에서는 1.5배로 조정 */
        font-size: 1.3em;
        padding: 15px 8px;
    }
}
/* 2024-09-07 hillstate-yiys 적용 css 끝*/