/* Keep it minimal and theme-friendly */
.entry-content li {
  position: relative;
      display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #fff6e0, #fdebd0);
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform .3s ease, box-shadow .3s ease;
}

.entry-content .li-copy-btn {
    background: #8b2008;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

.entry-content .li-copy-btn:hover {
  transform: translateY(-1px);
}

.entry-content .li-copy-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px){
    .entry-content li { flex-direction: column; align-items: flex-start; }
    .copy-text { margin-right: 0; margin-bottom: 10px; font-size: 18px; width: 100%; }
    .li-copy-btn { width: 100%; padding: 10px 0; }
}

