#dp-root .dp-side-top{
  height:64px;
  display:flex;
  align-items:center;
  padding:0px;
}
#dp-root .dp-side-body{
  padding:px;
}
#dp-root .dp-btn{
  min-width:38px;
  min-height:38px;
  border:0px solid var(--dp-line);
  background:transparent;
  color:var(--dp-text);
  border-radius:30px;
  cursor:pointer;
}
#dp-root .dp-search{
  display:flex;
  gap:8px;
}
#dp-root .dp-search input{
  width:100%;
  height:40px;
  border:1px solid var(--dp-line);
  background:transparent;
  color:var(--dp-text);
  border-radius:8px;
  padding:0 12px;
}
#dp-root .dp-search button,
#dp-root .dp-pill{
  border:1px solid var(--dp-line);
  background:transparent;
  color:var(--dp-text);
  padding:9px 14px;
  border-radius:8px;
  text-decoration:none;
}
#dp-root .dp-empty{
  min-height:140px;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--dp-muted);
  letter-spacing:.12em;
  background:linear-gradient(90deg,rgba(127,127,127,.04) 25%,rgba(127,127,127,.10) 50%,rgba(127,127,127,.04) 75%);
  background-size:200% 100%;
  animation:dp-empty-move 1.6s infinite;
}
@keyframes dp-empty-move{
  from{background-position:200% 0;}
  to{background-position:-200% 0;}
}
#dp-root .dp-wp-content{
  color:var(--dp-text);
  line-height:1.8;
}
#dp-root .dp-content-title{
  margin:0 0 18px;
  font-size:32px;
}
#dp-root .dp-content-body{
  font-size:16px;
}
