/* 전체 컨테이너 */
.view-container {
    max-width: 800px;
    margin: 150px auto 40px;
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    font-family: 'Noto Sans KR', sans-serif;
}

/* 제목 영역 */
.view-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 2px solid #0073e6;
    padding-bottom: 10px;
}

/* 작성 정보 */
.view-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}
.view-meta span {
    margin-right: 15px;
}

/* 본문 내용 */
.view-content {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* 첨부파일 영역 */
.view-attachment {
    background-color: #f9f9f9;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 30px;
}
.view-attachment strong {
    display: inline-block;
    margin-right: 10px;
}
.view-attachment a {
    color: #0073e6;
    text-decoration: underline;
}
.view-attachment a:hover {
    text-decoration: none;
}

/* 답변 영역 (문의사항 전용) */
.view-answer {
    margin-top: 40px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f5faff;
}
.view-answer h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.view-answer p {
    margin: 5px 0;
    font-size: 15px;
}

/* 버튼 영역 */
.view-actions {
    text-align: right;
    margin-top: 30px;
}
.view-actions a,
.view-actions button {
    display: inline-block;
    padding: 8px 14px;
    background-color: #0073e6;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    margin-left: 5px;
}
.view-actions a:hover,
.view-actions button:hover {
    background-color: #005bb5;
}
