/* 커스텀 검색 창(하단 고정) */
.fixed-search-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* 다른 요소들 위에 보이게 함 */
    background-color: #f8f9fa; /* 배경색 */
    padding: 10px; /* 패딩 */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); /* 그림자 효과 */
}
/* 검색 입력창 */
.fixed-search-bar input[type="text"] {
    width: 80%; /* 너비 */
    padding: 10px; /* 패딩 */
    border: 1px solid #ced4da; /* 테두리 */
    border-radius: 4px; /* 모서리 둥글게 */
    font-size: 16px; /* 폰트 크기 */
}
/* 검색 버튼 */
.fixed-search-bar button {
    padding: 10px 15px; /* 패딩 */
    margin-left: 10px; /* 입력창과 버튼 사이 간격 */
    background-color: #007bff; /* 버튼 배경색 */
    color: white; /* 버튼 글자색 */
    border: none; /* 테두리 없음 */
    border-radius: 4px; /* 모서리 둥글게 */
    cursor: pointer; /* 커서 모양 변경 */
}
.fixed-search-bar button:hover {
    background-color: #0056b3; /* 버튼 호버 시 색상 변경 */
}

 

/* 모바일 헤더 */
.mobile-header-menu,
.mobile-header-menu:link,
.mobile-header-menu:visited {
    color: #333; /* 원하는 색상으로 지정 */
    text-decoration: none;
}

/* 선택: 마우스를 올렸을 때 색상을 변경하고 싶다면 */
.mobile-header-menu:hover {
    color: #555; /* 마우스 오버 시 색상 */
}
.llm-search-loader {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    align-items: center;
    justify-content: center;
    z-index: 10;
    overflow: hidden;
}

.loading-text {
    font-size: 24px;
    font-weight: bold;
    color: red;
    animation: color-change 1s linear infinite alternate,
               scale-text 2s linear infinite alternate;
}

@keyframes color-change {
    from {
        color: red;
    }
    to {
        color: blue;
    }
}

@keyframes scale-text {
    from {
        transform: scale(0.8);
    }
    to {
        transform: scale(0.9);
    }
}


.markdown-content p {
    margin-bottom: 3px; /* 문단 간 간격 줄이기 */
    line-height: 0.5;   /* 줄 간격 줄이기 */
}

.markdown-content ul {
    list-style-type: disc; /* 필요하다면 목록 스타일 지정 */
    padding-left: 4px;    /* 목록 들여쓰기 */
}

.markdown-content ul li {
    margin-bottom: 3px;    /* 목록 항목 간 간격 줄이기 */
    line-height: 0.3;
}

/* 추가적인 스타일 (제목, 코드 블록 등) */
.markdown-content h1,
.markdown-content h2,
.markdown-content h3 {
    margin-top: 8px;
    margin-bottom: 6px;
    line-height: 1.2;
}

.markdown-content pre,
.markdown-content code {
    background-color: #f4f4f4;
    padding: 5px;
    border-radius: 3px;
}

.markdown-content strong {
    background-color: #fb0202;
    padding: 5px;
    border-radius: 3px;
}