/* ========== 说明书按钮容器 ========== */
.biojx-manual-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 15px 0;
}
.biojx-manual-label {
    font-size: 24px;
    font-weight: 500;
    color: #178b30;
    white-space: nowrap;
    line-height: 1;
}

/* 按钮主体（核心布局已在内联样式中，这里仅保留装饰和交互） */
.biojx-manual-btn {
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    box-sizing: border-box;
}
.biojx-manual-btn:hover:not(:disabled) {
    background: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.biojx-manual-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}