
/* 안내 문구 스타일링 */
/* 안내 박스 전체 스타일 */
.guide-box {
    background-color: #f1f5f9; /* 연한 블루그레이 톤 */
    border-radius: 10px;
    border: 1px dashed #cbd5e1; /* 점선 테두리로 '안내' 느낌 강조 */
}

/* 안내 타이틀 */
.guide-title {
    font-size: 15px;
    font-weight: 700;
    color: #334155;
}

/* 안내 리스트 문구 */
.guide-list {
    list-style: none;
    padding-left: 0;
}

.guide-list li {
    font-size: 13.5px; /* 기존보다 훨씬 키운 사이즈 */
    color: #475569;
    line-height: 1.7;
    margin-bottom: 4px;
    position: relative;
    padding-left: 18px;
}

/* 불렛 포인트 아이콘 대체 */
.guide-list li::before {
    content: "•";
    position: absolute;
    left: 4px;
    color: #94a3b8;
    font-weight: bold;
}

/* 단축키 강조 스타일 */
.guide-box kbd {
    background-color: #ffffff;
    color: #1e293b;
    padding: 2px 6px;
    border: 1px solid #cbd5e1;
    border-bottom: 2px solid #94a3b8;
    border-radius: 4px;
    font-family: inherit;
    font-weight: 600;
    font-size: 12px;
}

/* 예시 텍스트 강조 */
.example-text {
    color: #4e73df;
    font-weight: 600;
    background: #eef2ff;
    padding: 1px 4px;
    border-radius: 4px;
}
