/* House-Washers Admin — allow copy/paste on all dashboard pages */
html, body,
input, textarea, select, button, a,
p, div, span, code, pre, td, th, li, h1, h2, h3, h4, label, nav {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

/* Keep drag handles non-selectable so reorder still works */
.tile-handle,
[draggable="true"] .tile-handle {
  -webkit-user-select: none !important;
  user-select: none !important;
}


/* Admin Links header dropdown */
.hw-links-drop { position: relative; display: inline-block; }
.hw-links-drop > summary {
    list-style: none;
    cursor: pointer;
    color: #ddd;
    font-size: 0.9rem;
    user-select: none;
}
.hw-links-drop > summary::-webkit-details-marker { display: none; }
.hw-links-drop > summary:hover { color: #fff; }
.hw-links-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 200px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 6px;
    z-index: 80;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.hw-links-menu a {
    display: block;
    padding: 8px 10px;
    color: #eee;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.88rem;
}
.hw-links-menu a:hover { background: #333; color: #fff; }
.hw-links-menu .hw-links-manage {
    margin-top: 4px;
    border-top: 1px solid #333;
    padding-top: 10px;
    color: #86efac;
    font-weight: 600;
}
