/* 전체 레이아웃 */
.manualBox {
    font-size: 12px;;
    display: flex;
    gap:15px;
    background: #fff;
    padding-left: 24rem;
    padding-top: 6rem;
    min-height: 100vh;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* 왼쪽 메뉴 영역 */
.manualLeft {
    width: 16rem; /* w-64 */
    border-right: 1px solid #e5e7eb;
}

/* 오른쪽 컨텐츠 영역 */
.manualRight {
    flex: 1;
}

/* 메뉴 아이템 */
.listed {
    width: 100%;
}

/* 메뉴 아이템 내부 스타일 */
.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.cursor-pointer {
    cursor: pointer;
}

.hover\:bg-gray-100:hover {
    background-color: #f3f4f6;
}

.bg-gray-200 {
    background-color: #e5e7eb;
}

.mr-2 {
    margin-right: 0.5rem;
}

/* 컨텐츠 영역 스타일 */
.p-6 {
    padding: 1.5rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.font-bold {
    font-weight: 700;
}

.mb-4 {
    margin-bottom: 1rem;
}

/* 컴포넌트 프리뷰 영역 */
.space-y-4 > * + * {
    margin-top: 1rem;
}

.border {
    border: 1px solid #e5e7eb;
}

.rounded {
    border-radius: 0.25rem;
}

/* 버튼 스타일 */
.bg-blue-500 {
    background-color: #3b82f6;
}

.text-white {
    color: #ffffff;
}

/* 소스코드 보기 버튼 */
.gap-2 {
    gap: 0.5rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-gray-600 {
    color: #4b5563;
}

.hover\:bg-gray-50:hover {
    background-color: #f9fafb;
}

/* 소스코드 영역 */
.bg-gray-50 {
    background-color: #f9fafb;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.overflow-x-auto {
    overflow-x: auto;
}

/* prose 클래스 - 일반 텍스트 컨텐츠 스타일링 */
.prose {
    max-width: 65ch;
    color: #374151;
    line-height: 1.75;
}

.prose p {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
}

/* 애니메이션 효과 */
.transition {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
 
.codeBox {
    background-color: #374151;
    color:#fff;
    padding:15px;
}