/* 모던 디자인 변수 호환 */
/* common-modern.css의 변수를 사용하여 다크모드 및 테마 호환성 확보 */

/* 기본 레이아웃 */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

h1 {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #343a40;
}

/* 문의 내역 상자 */
#suggestions {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* 각 문의 내역 스타일 */
#suggestions div {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dee2e6;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    white-space: pre-line;
}

/* 텍스트 강조 */
strong {
    font-weight: bold;
    color: #007bff;
}

/* 관리자 답변 섹션 */
.admin-reply {
    background-color: #e9f7ff;
    padding: 15px;
    border-left: 4px solid #007bff;
    border-radius: 5px;
    margin-top: 10px;
    color: #004085;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    #suggestions {
        padding: 15px;
    }
}
