diff --git a/frontend/src/index.css b/frontend/src/index.css
index bea989d..3eb7cfc 100644
--- a/frontend/src/index.css
+++ b/frontend/src/index.css
@@ -164,3 +164,345 @@ code {
transform: scale(1);
transform-origin: 0% 0%;
}
+
+/* 마크다운 콘텐츠 스타일 */
+.markdown-content {
+ max-width: 100%;
+ line-height: 1.6;
+ color: #374151;
+}
+
+.markdown-content h1,
+.markdown-content h2,
+.markdown-content h3,
+.markdown-content h4,
+.markdown-content h5,
+.markdown-content h6 {
+ font-weight: 600;
+ margin-top: 1.5rem;
+ margin-bottom: 0.5rem;
+ color: #1f2937;
+}
+
+.markdown-content h1 {
+ font-size: 1.5rem;
+ border-bottom: 1px solid #e5e7eb;
+ padding-bottom: 0.5rem;
+}
+
+.markdown-content h2 {
+ font-size: 1.25rem;
+}
+
+.markdown-content h3 {
+ font-size: 1.125rem;
+}
+
+.markdown-content h4 {
+ font-size: 1rem;
+}
+
+.markdown-content p {
+ margin-bottom: 1rem;
+ color: #374151;
+}
+
+.markdown-content ul,
+.markdown-content ol {
+ margin-bottom: 1rem;
+ padding-left: 1.5rem;
+}
+
+.markdown-content li {
+ margin-bottom: 0.25rem;
+ color: #374151;
+}
+
+.markdown-content strong {
+ font-weight: 600;
+ color: #1f2937;
+}
+
+.markdown-content em {
+ font-style: italic;
+ color: #4b5563;
+}
+
+.markdown-content code {
+ background-color: #f3f4f6;
+ padding: 0.125rem 0.25rem;
+ border-radius: 0.25rem;
+ font-size: 0.875rem;
+ font-family: 'Courier New', monospace;
+}
+
+.markdown-content pre {
+ background-color: #1f2937;
+ color: #f9fafb;
+ padding: 1rem;
+ border-radius: 0.5rem;
+ overflow-x: auto;
+ margin-bottom: 1rem;
+}
+
+.markdown-content pre code {
+ background-color: transparent;
+ padding: 0;
+ color: inherit;
+}
+
+.markdown-content blockquote {
+ border-left: 4px solid #3b82f6;
+ padding-left: 1rem;
+ margin: 1rem 0;
+ font-style: italic;
+ color: #4b5563;
+ background-color: #eff6ff;
+ padding: 0.5rem 1rem;
+ border-radius: 0 0.25rem 0.25rem 0;
+}
+
+.markdown-content table {
+ width: 100%;
+ border-collapse: collapse;
+ margin-bottom: 1rem;
+ border: 1px solid #d1d5db;
+}
+
+.markdown-content th,
+.markdown-content td {
+ border: 1px solid #d1d5db;
+ padding: 0.5rem;
+ text-align: left;
+}
+
+.markdown-content th {
+ background-color: #f9fafb;
+ font-weight: 600;
+ color: #1f2937;
+}
+
+.markdown-content tr:hover {
+ background-color: #f9fafb;
+}
+
+.markdown-content hr {
+ border: none !important;
+ border-top: none !important;
+ margin: 2rem 0;
+ display: none !important; /* hr 요소 완전 숨김 */
+ height: 0 !important;
+ visibility: hidden !important;
+}
+
+/* 모든 가능한 선 제거 */
+.markdown-content * {
+ border-top: none !important;
+}
+
+.markdown-content > *:first-child {
+ border-top: none !important;
+}
+
+/* 참조 문서 섹션의 모든 선 제거 */
+.mt-3.pt-3 {
+ border-top: none !important;
+ border: none !important;
+}
+
+/* 모든 div 요소의 상단 테두리 제거 */
+div {
+ border-top: none !important;
+}
+
+/* 특정 클래스의 테두리 제거 */
+.border-t {
+ border-top: none !important;
+}
+
+/* 모든 가능한 선과 배경 제거 */
+* {
+ border-top: none !important;
+}
+
+/* 메시지 버블의 모든 테두리 제거 */
+.rounded-2xl {
+ border: none !important;
+ border-top: none !important;
+ border-bottom: none !important;
+ border-left: none !important;
+ border-right: none !important;
+}
+
+/* 마크다운 콘텐츠 스타일 */
+.markdown-content {
+ border: none !important;
+ background: transparent !important;
+ color: #374151 !important;
+ font-family: inherit !important;
+ line-height: 1.6 !important;
+ white-space: pre-wrap !important;
+ word-wrap: break-word !important;
+}
+
+/* 마크다운 요소들 기본 스타일 */
+.markdown-content h1 {
+ font-size: 1.5rem !important;
+ font-weight: bold !important;
+ color: #374151 !important;
+ margin: 1rem 0 0.5rem 0 !important;
+ border-bottom: 2px solid #E5E7EB !important;
+ padding-bottom: 0.5rem !important;
+}
+
+.markdown-content h2 {
+ font-size: 1.25rem !important;
+ font-weight: bold !important;
+ color: #374151 !important;
+ margin: 1.5rem 0 0.5rem 0 !important;
+}
+
+.markdown-content h3 {
+ font-size: 1.125rem !important;
+ font-weight: bold !important;
+ color: #374151 !important;
+ margin: 1.25rem 0 0.5rem 0 !important;
+}
+
+.markdown-content h4 {
+ font-size: 1rem !important;
+ font-weight: bold !important;
+ color: #374151 !important;
+ margin: 1rem 0 0.5rem 0 !important;
+}
+
+.markdown-content p {
+ margin: 0.5rem 0 !important;
+ line-height: 1.6 !important;
+ color: #4B5563 !important;
+}
+
+.markdown-content ul {
+ margin: 0.5rem 0 !important;
+ padding-left: 1.5rem !important;
+ list-style-type: disc !important;
+}
+
+.markdown-content ol {
+ margin: 0.5rem 0 !important;
+ padding-left: 1.5rem !important;
+ list-style-type: decimal !important;
+}
+
+.markdown-content li {
+ margin: 0.25rem 0 !important;
+ color: #4B5563 !important;
+}
+
+.markdown-content strong {
+ font-weight: bold !important;
+ color: #374151 !important;
+}
+
+.markdown-content em {
+ font-style: italic !important;
+ color: #4B5563 !important;
+}
+
+.markdown-content code {
+ background-color: #F3F4F6 !important;
+ padding: 0.125rem 0.25rem !important;
+ border-radius: 0.25rem !important;
+ font-family: 'Courier New', monospace !important;
+ font-size: 0.875rem !important;
+ color: #374151 !important;
+}
+
+/* 마크다운 내용이 pre 태그로 감싸지지 않도록 설정 */
+.markdown-content {
+ white-space: normal !important;
+ word-wrap: break-word !important;
+}
+
+/* 전체 마크다운을 감싸는 pre 태그의 스타일을 일반 div처럼 변경 */
+.markdown-content > pre {
+ white-space: normal !important;
+ word-wrap: break-word !important;
+ background: transparent !important;
+ border: none !important;
+ padding: 0 !important;
+ margin: 0 !important;
+ font-family: inherit !important;
+ font-size: inherit !important;
+ line-height: inherit !important;
+}
+
+/* 실제 코드 블록에만 적용되는 pre 태그 스타일 */
+.markdown-content pre {
+ background-color: #F3F4F6 !important;
+ color: #374151 !important;
+ padding: 1rem !important;
+ border-radius: 0.5rem !important;
+ overflow-x: auto !important;
+ margin: 1rem 0 !important;
+ white-space: pre-wrap !important;
+ word-wrap: break-word !important;
+}
+
+/* pre 태그 내부의 코드 블록만 스타일 적용 */
+.markdown-content pre code {
+ background: transparent !important;
+ padding: 0 !important;
+ border-radius: 0 !important;
+ font-size: inherit !important;
+}
+
+.markdown-content blockquote {
+ border-left: 4px solid #3B82F6 !important;
+ padding-left: 1rem !important;
+ margin: 1rem 0 !important;
+ font-style: italic !important;
+ color: #6B7280 !important;
+ background-color: #EFF6FF !important;
+ padding: 0.5rem 1rem !important;
+ border-radius: 0 0.25rem 0.25rem 0 !important;
+}
+
+.markdown-content table {
+ width: 100% !important;
+ border-collapse: collapse !important;
+ margin: 1rem 0 !important;
+}
+
+.markdown-content th {
+ border: 1px solid #D1D5DB !important;
+ padding: 0.5rem !important;
+ text-align: left !important;
+ background-color: #F9FAFB !important;
+ font-weight: bold !important;
+ color: #374151 !important;
+}
+
+.markdown-content td {
+ border: 1px solid #D1D5DB !important;
+ padding: 0.5rem !important;
+ text-align: left !important;
+ color: #4B5563 !important;
+}
+
+.markdown-content hr {
+ border: none !important;
+ border-top: 1px solid #E5E7EB !important;
+ margin: 2rem 0 !important;
+}
+
+/* 참조 문서 섹션의 모든 선과 배경 제거 */
+.mt-3.pt-3 {
+ border: none !important;
+ border-top: none !important;
+ border-bottom: none !important;
+ border-left: none !important;
+ border-right: none !important;
+ background: transparent !important;
+ background-color: transparent !important;
+}