/* Message de recherche (searching) : bleu + spinner */
.centered-animated-message.searching {
	background: linear-gradient(120deg, rgba(59,130,246,0.13) 0%, rgba(59,130,246,0.22) 100%);
	color: #eaf3ff;
}
.centered-animated-message.searching .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}
.spinner {
	width: 48px;
	height: 48px;
	border: 6px solid #3b82f6;
	border-top: 6px solid #fff;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	display: inline-block;
	box-sizing: border-box;
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
/* Animation pour apparition des résultats (fade-in + slide-up) */
.result-item {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.55s cubic-bezier(.4,0,.2,1), transform 0.55s cubic-bezier(.4,0,.2,1);
}
.result-item.animated-in {
	opacity: 1;
	transform: translateY(0);
}
#searchBarWrapper {
	scroll-behavior: smooth;
	position: relative;
}

/* Fade effect for scroll edges */
#searchBarWrapper::before, #searchBarWrapper::after {
	content: '';
	position: absolute;
	top: 0; bottom: 0;
	width: 28px;
	pointer-events: none;
	z-index: 2;
	transition: opacity 0.65s cubic-bezier(.4,0,.2,1);
}
#searchBarWrapper::before {
	left: 0;
	background: linear-gradient(to right, rgba(0,0,0,0.18) 70%, transparent 100%);
	opacity: 0;
}
#searchBarWrapper::after {
	right: 0;
	background: linear-gradient(to left, rgba(0,0,0,0.18) 70%, transparent 100%);
	opacity: 0;
}
#searchBarWrapper.scrolling-left::before { opacity: 1; }
#searchBarWrapper.scrolling-right::after { opacity: 1; }
/* Message animé et centré pour No results, erreurs, etc. */
/* Message centré, doux, couleur contextuelle */
.centered-animated-message {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 220px;
	width: 100%;
	font-size: 2.1rem;
	color: #fff;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-align: center;
	opacity: 0.96;
	animation: fadeInPop 0.7s cubic-bezier(.4,0,.2,1);
	background: linear-gradient(120deg, rgba(255,255,255,0.04) 0%, rgba(60,60,60,0.10) 100%);
	border-radius: 18px;
	box-shadow: 0 4px 18px rgba(0,0,0,0.10);
	margin: 32px auto;
	position: relative;
}
.centered-animated-message.found {
	background: linear-gradient(120deg, rgba(34,197,94,0.10) 0%, rgba(34,197,94,0.18) 100%);
	color: #eaffef;
}
.centered-animated-message.notfound {
	background: linear-gradient(120deg, rgba(239,68,68,0.10) 0%, rgba(239,68,68,0.18) 100%);
	color: #ffecec;
}
.centered-animated-message .icon {
	font-size: 3.2rem;
	margin-bottom: 18px;
	color: inherit;
	filter: none;
	animation: bounceIn 0.7s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeInPop {
	0% { opacity: 0; transform: scale(0.92) translateY(30px); }
	60% { opacity: 1; transform: scale(1.08) translateY(-8px); }
	100% { opacity: 0.92; transform: scale(1) translateY(0); }
}
@keyframes bounceIn {
	0% { opacity: 0; transform: scale(0.7) translateY(40px); }
	60% { opacity: 1; transform: scale(1.15) translateY(-10px); }
	100% { opacity: 1; transform: scale(1) translateY(0); }
}

html, body, * {
	font-family: 'SF Pro Display', 'Segoe UI', Arial, sans-serif !important;
	font-weight: 800 !important;
	letter-spacing: 0.01em !important;
}

/* Fix for FontAwesome and SVG icons: do not override their font-family/weight */
i.fas, i.far, i.fab, i.fa, [class^="fa-"], [class*=" fa-"] {
	font-family: "Font Awesome 6 Free", "FontAwesome", Arial, sans-serif !important;
	font-weight: 900 !important;
	letter-spacing: normal !important;
}
svg, i svg {
	font-family: initial !important;
	font-weight: normal !important;
	letter-spacing: normal !important;
}
i, svg, img {
	font-family: inherit !important;
	font-weight: normal !important;
	letter-spacing: normal !important;
}

.info-tree-list {
 margin: 0.15em 0 0.5em 0.05em;
 padding: 0;
 list-style: none;
 font-size: 1.08em;
 color: #fff;
 background: none !important;
}
.info-tree-list li {
 display: flex;
 align-items: center;
 margin-bottom: 0.04em;
 padding: 0.02em 0 0.02em 0;
 min-height:20px;
 border-radius: 0;
 background: none !important;
 box-shadow: none !important;
 border: none !important;
}
.info-tree-list .tree-key {
 font-weight: 700;
 margin-right: 0.4em;
 color: #fff;
 letter-spacing: 0.01em;
 background: none !important;
 padding: 0 !important;
 display: inline-block;
 width: auto !important;
 height: auto !important;
 min-width: 0 !important;
 border-radius: 0 !important;
 box-shadow: none !important;
}
.info-tree-list .tree-value {
 color: #e0e0e0;
 font-weight: 500;
 background: none !important;
 padding: 0;
}
.info-tree-list .tree-null, .info-tree-list .tree-undefined {
 color: #bdbdbd;
 font-style: italic;
 background: none !important;
}
.info-tree-list .tree-index {
 color: #bdbdbd;
 margin-right: 0.3em;
 background: none !important;
}
.info-tree-list .tree-empty {
 color: #757575;
 font-style: italic;
 background: none !important;
}
.info-tree-list i.fas {
 margin-right: 0.32em;
 color: #fff;
 opacity: 0.82;
 font-size: 1.08em;
 background: none !important;
}
.info-tree-list .tree-truncated {
 color: #ff9800;
 font-size: 0.98em;
 margin-left: 0.5em;
 background: none !important;
}
.preview-field { 
 background: none !important;
 padding: 0 !important;
 margin: 0 !important;
 border: none !important;
 color: #ffffff !important;
 font-weight: 600;
}
.preview-field .preview-value { color: #e0e0e0; font-weight:500; }
.preview-field i.fas { color: #fff; opacity:0.9; }
#uhq-login-form {
 width: 420px !important;
 max-width: 99vw !important;
 padding: 2.8em 2.8em 2em 2.8em !important;
 opacity: 0;
 transform: translate(-50%, -50%) scale(0.92);
 transition: opacity 0.32s cubic-bezier(.4,0,.2,1), transform 0.32s cubic-bezier(.4,0,.2,1);
 background: rgba(255,255,255,0.06) !important;
 border: 1.5px solid rgba(255,255,255,0.22) !important;
 box-shadow: 0 8px 32px 0 rgba(255,255,255,0.12) !important;
}
#uhq-login-form.show {
 opacity: 1;
 transform: translate(-50%, -50%) scale(1);
}
#uhq-login-form input[type="text"],
#uhq-login-form input[type="password"] {
 outline: none;
 transition: box-shadow 0.18s cubic-bezier(.4,0,.2,1), border 0.18s cubic-bezier(.4,0,.2,1);
 box-shadow: 0 1px 6px rgba(0,0,0,0.06);
 border: none;
 background: rgba(255,255,255,0.18);
 color: #fff !important;
 transition: background 0.22s cubic-bezier(.4,0,.2,1), color 0.22s cubic-bezier(.4,0,.2,1), box-shadow 0.22s cubic-bezier(.4,0,.2,1);
}
#uhq-login-form input[type="text"]::placeholder,
#uhq-login-form input[type="password"]::placeholder {
 color: rgba(255,255,255,0.6);
}
#uhq-login-form input[type="text"]:focus,
#uhq-login-form input[type="password"]:focus {
 box-shadow: 0 0 0 2px #fff, 0 1px 6px rgba(0,0,0,0.06);
 background: rgba(255,255,255,0.22);
 transition: box-shadow 0.18s cubic-bezier(.4,0,.2,1), background 0.18s cubic-bezier(.4,0,.2,1);
 color: #fff;
}
#uhq-login-form button[type="submit"] {
 outline: none;
 transition: box-shadow 0.18s cubic-bezier(.4,0,.2,1), background 0.18s cubic-bezier(.4,0,.2,1);
 background: #fff;
 color: #222;
 font-weight: 700;
 font-size: 1em;
 letter-spacing: 0.04em;
 box-shadow: 0 2px 8px rgba(0,0,0,0.08);
 transition: background 0.22s cubic-bezier(.4,0,.2,1), color 0.22s cubic-bezier(.4,0,.2,1), box-shadow 0.22s cubic-bezier(.4,0,.2,1);
}
#uhq-login-form button[type="submit"]:focus {
 box-shadow: 0 0 0 2px #fff, 0 2px 8px rgba(0,0,0,0.08);
 background: #f5f5f5;
 transition: box-shadow 0.18s cubic-bezier(.4,0,.2,1), background 0.18s cubic-bezier(.4,0,.2,1);
 color: #111;
}
.login-hover .login-text {
 transition: color 0.18s cubic-bezier(.4,0,.2,1), transform 0.18s cubic-bezier(.4,0,.2,1);
}
.center-text:hover .login-hover .login-text {
 color: #fff;
 transform: scale(1.08);
}
.main-header {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 z-index: 10;
 display: flex;
 align-items: center;
 justify-content: space-between;
 padding: 0.9rem 1.6rem 1.8rem 1.2rem; 
 background: rgba(0,0,0,0.35);
 color: #fff;
 font-family: 'SF Pro Display', 'Segoe UI', Arial, sans-serif;
}
.site-brand {
 display: flex;
 align-items: center;
 gap: 0.5rem;
 font-size: 1rem;
}
.main-nav {
 display: flex;
 align-items: center;
 gap: 0.8rem;
 margin-left: 0;
 position: absolute;
 left: 50%;
 transform: translateX(-50%);
 z-index: 20;
}
.main-nav a {
 color: rgba(255,255,255,0.9);
 text-decoration: none;
 padding: 0.18rem 0.5rem;
 border-radius: 6px;
 font-weight: 600;
 font-size: 0.95rem;
 position: relative; 
 transition: color 0.18s cubic-bezier(.4,0,.2,1), background 0.12s ease;
}
.main-nav a:hover {
 background: rgba(255,255,255,0.04);
}
.main-nav a i.fas,
.main-nav a i.fab,
.main-nav a i.far {
 display: inline-block;
 transform: translateY(2px); 
 margin-right: 0.45rem;
 font-size: 1.02em; 
 vertical-align: middle;
}
.main-nav a .link-text { vertical-align: middle; }
.main-nav {
 position: absolute; 
}
.main-nav .nav-indicator {
 position: absolute;
 height: 2px; 
 bottom: -6px;
 left: 0;
 width: 0;
 border-radius: 2px;
 background: #ffffff; 
 box-shadow: 0 2px 8px rgba(255,255,255,0.06);
 transition: left 220ms cubic-bezier(.4,0,.2,1), width 220ms cubic-bezier(.4,0,.2,1), background 120ms ease;
 z-index: 5;
 pointer-events: none;
}
.main-nav a.active {
 color: #ffffff;
}
@media (max-width: 900px) {
 .main-nav .nav-indicator { display: none; }
}
.site-brand strong {
 letter-spacing: 0.06em;
}
.site-brand span {
 opacity: 0.85;
 font-weight: 500;
}
.user-profile {
 display: flex;
 align-items: center;
 gap: 0.6rem;
 margin-left: auto; 
 margin-right: 2.4rem; 
 padding: 0.14rem 0.5rem; 
 border-radius: 8px;
 background: rgba(255,255,255,0.02);
 box-shadow: 0 2px 8px rgba(0,0,0,0.28);
}
.user-profile .avatar {
 width: 48px;
 height: 48px;
 border-radius: 50%;
 object-fit: cover;
 border: 1.5px solid rgba(255,255,255,0.12);
 box-shadow: 0 2px 10px rgba(0,0,0,0.24);
 background: rgba(255,255,255,0.04);
}
.user-profile .username {
 color: #ffffff;
 font-weight: 700;
 font-family: 'SF Pro Display', 'Segoe UI', Arial, sans-serif;
 font-size: 1rem;
 letter-spacing: 0.02em;
 opacity: 1;
 white-space: nowrap;
}
.user-profile .sep {
 display: inline-block;
 vertical-align: middle;
 width: 2px;
 height: 30px;
 margin: 0 0.6rem;
 border-radius: 2px;
 background: #ffffff;
 opacity: 0.98;
}
main {
 margin-top: 5.4rem; 
}
.main-footer {
 position: fixed;
 left: 50%;
 bottom: 0.5em;
 transform: translateX(-50%);
 color: rgba(255, 255, 255, 0.192);
 padding: 0 0.2em;
 font-size: 0.82em;
 font-family: 'SF Pro Display', 'Segoe UI', Arial, sans-serif;
 z-index: 200;
 text-align: center;
 letter-spacing: 0.04em;
}
.body-main {
 position: fixed;
 inset: 0;
 width: 100vw;
 height: 100vh;
 background: #000000;
 --gap: 5em;
 --line: 1px;
 --color: rgba(255, 255, 255, 0.2);
 background-image: linear-gradient(-90deg, transparent calc(var(--gap) - var(--line)), var(--color) calc(var(--gap) - var(--line) + 1px), var(--color) var(--gap)), linear-gradient(0deg, transparent calc(var(--gap) - var(--line)), var(--color) calc(var(--gap) - var(--line) + 1px), var(--color) var(--gap));
 background-size: var(--gap) var(--gap);
 z-index: 0;
}
.center-text {
 position: fixed;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 color: #fff;
 font-size: clamp(3.5rem, 10vw, 8rem);
 font-weight: 900;
 letter-spacing: 0.08em;
 font-family: 'SF Pro Display', 'Segoe UI', 'Arial', sans-serif;
 text-shadow: 0 4px 32px rgba(0,0,0,0.18), 0 1px 0 rgba(255,255,255,0.08);
 background: linear-gradient(90deg, #fff 60%, #e0e0e0 100%);
 background-clip: text;
 -webkit-background-clip: text;
 user-select: none;
 pointer-events: auto;
 opacity: 1;
 animation: text-bounce-in 0.5s cubic-bezier(.4,0,.2,1) 0.05s forwards, text-glow 2.2s cubic-bezier(.4,0,.2,1) infinite alternate;
 transition: transform 0.22s cubic-bezier(.4,0,.2,1);
 cursor: pointer;
 display: flex;
 flex-direction: column;
 align-items: center;
}
.login-hover {
 position: absolute;
 left: 50%;
 top: 100%;
 transform: translate(-50%, 0.5em) scale(0.9);
 opacity: 0;
 visibility: hidden;
 background: rgba(0,0,0,0.7);
 color: #fff;
 font-size: clamp(0.7rem, 1vw, 1.1rem);
 padding: 0.9rem 1.6rem 1.8rem 1.2rem; 
 border-bottom: 1px solid rgba(255,255,255,0.9);
 padding: 0.5em 1em;
 border-radius: 1.2em;
 box-shadow: 0 4px 24px rgba(0,0,0,0.18);
 pointer-events: auto;
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 0.2em;
}
.center-text:hover {
 transform: translate(-50%, -50%) scale(1.18);
 transition: transform 0.22s cubic-bezier(.4,0,.2,1);
}
.center-text .login-hover {
 opacity: 0;
 visibility: hidden;
 pointer-events: none;
 transform: translate(-50%, 0.2em) scale(0.8);
 transition: opacity 0.18s cubic-bezier(.4,0,.2,1), transform 0.18s cubic-bezier(.4,0,.2,1);
}
.center-text:hover .login-hover {
 opacity: 1;
 visibility: visible;
 pointer-events: auto;
 transform: translate(-50%, 2.2em) scale(1);
 transition-delay: 0s;
}
.center-text .login-hover {
 transition-delay: 0s;
 opacity: 1;
 visibility: visible;
 pointer-events: auto;
 animation: login-stay 1.2s cubic-bezier(.4,0,.2,1);
}
.arrow {
 font-size: 2em;
 display: block;
 transition: transform 0.18s cubic-bezier(.4,0,.2,1);
 line-height: 0.8;
 margin-bottom: -0.1em;
}
.center-text:hover .arrow {
 transform: translateY(0.1em);
}
.mouse-light-trail {
 position: fixed;
 left: 0;
 top: 0;
 width: 120px;
 height: 120px;
 pointer-events: none;
 border-radius: 50%;
 background: radial-gradient(circle, rgba(255,255,255,0.13) 0%, rgba(255,255,255,0.03) 60%, transparent 100%);
 filter: blur(14px);
 z-index: 2;
 opacity: 0.7;
 transition: opacity 0.18s cubic-bezier(.4,0,.2,1), transform 0.18s cubic-bezier(.4,0,.2,1);
}
.mouse-light-pulse {
 position: fixed;
 left: 0;
 top: 0;
 width: 180px;
 height: 180px;
 pointer-events: none;
 border-radius: 50%;
 background: radial-gradient(circle, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.08) 60%, transparent 100%);
 filter: blur(18px);
 z-index: 3;
 opacity: 0.8;
 transform: scale(0.7);
 transition: opacity 0.18s cubic-bezier(.4,0,.2,1), transform 0.18s cubic-bezier(.4,0,.2,1);
}
@keyframes text-bounce-in {
 0% { opacity: 0; transform: translate(-50%, -60%) scale(0.7); }
 60% { opacity: 1; transform: translate(-50%, -48%) scale(1.12); }
 80% { opacity: 1; transform: translate(-50%, -52%) scale(0.98); }
 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes text-glow {
 0% { text-shadow: 0 4px 32px rgba(0,0,0,0.18), 0 1px 0 rgba(255,255,255,0.08); }
 50% { text-shadow: 0 8px 48px rgba(255,255,255,0.12), 0 1px 0 rgba(255,255,255,0.18); }
 100% { text-shadow: 0 4px 32px rgba(0,0,0,0.18), 0 1px 0 rgba(255,255,255,0.08); }
}
@keyframes login-stay {
 0% { opacity: 0; transform: translate(-50%, 0.5em) scale(0.9); }
 10% { opacity: 1; transform: translate(-50%, 1.2em) scale(1); }
 90% { opacity: 1; transform: translate(-50%, 1.2em) scale(1); }
 100% { opacity: 1; transform: translate(-50%, 1.2em) scale(1); }
}
@media (max-width: 600px) {
 .center-text {
 font-size: clamp(1.2rem, 11vw, 3.2rem);
 letter-spacing: 0.04em;
 }
 .login-hover {
 font-size: clamp(0.7rem, 3vw, 1rem);
 padding: 0.12em 0.5em;
 gap: 0.15em;
 }
 header {
 font-size: 0.9rem !important;
 padding: 0.5rem 0.7rem !important;
 }
 .site-brand {
 font-size: 0.9rem !important;
 gap: 0.3rem !important;
 }
 .user-profile .avatar {
 width: 40px;
 height: 40px;
 }
 .user-profile .username {
 font-size: 0.88rem;
 }
 .user-profile .sep {
 height: 22px;
 width: 1.5px;
 margin: 0 0.45rem;
 }
}
.main-header-dashboard {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 z-index: 10;
 display: flex;
 align-items: center;
 justify-content: space-between;
 padding: 0.9rem 1.6rem 1.8rem 1.2rem; 
 background: rgb(0, 0, 0);
 border-bottom: 0.5px solid #ffffff; 
 color: #fff;
 font-family: 'SF Pro Display', 'Segoe UI', Arial, sans-serif;
}
.main-header-dashboard::after {
 content: '';
 position: absolute;
 left: 0;
 right: 0;
 bottom: 0;
 height: 2px;
 background: linear-gradient(90deg, rgba(255,255,255,0.95), rgba(255,255,255,0.8));
 pointer-events: none;
}
@media (max-width: 900px) {
 .main-nav {
 position: static;
 transform: none;
 margin-left: 1.2rem;
 justify-content: flex-start;
 }
 .main-nav a {
 padding: 0.22rem 0.48rem;
 }
}
:root{ --glass-bg: rgba(255,255,255,0.03); --muted: rgba(255,255,255,0.45); }
.search-container{
 max-width:980px; margin:calc(7.2rem + 20px) auto 0; padding:28px 36px; border-radius:18px;
 background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
 border:1px solid rgba(255,255,255,0.04); box-shadow:0 20px 60px rgba(0,0,0,0.7);
 backdrop-filter: blur(8px);
}
.search-form{ display:flex; gap:12px; align-items:center; }
#searchBarWrapper{ display:flex; align-items:center; gap:8px; padding:8px 12px; width:100%; max-width:900px; border-radius:999px; background:rgba(0,0,0,0.35); border:1px solid rgba(255,255,255,0.04); box-shadow:inset 0 1px 0 rgba(255,255,255,0.02), 0 12px 40px rgba(0,0,0,0.7); overflow-x:auto; -webkit-overflow-scrolling:touch; }
#searchBarWrapper:focus-within{ box-shadow:0 18px 48px rgba(0,0,0,0.8), 0 0 0 6px rgba(255,255,255,0.02); border-color:rgba(255,255,255,0.08); }
.filters-area-inline{ display:flex; gap:6px; flex-wrap:wrap; align-items:center; }
.filter-chip{ display:inline-flex; align-items:center; gap:6px; padding:6px 8px; border-radius:14px; background:rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.04); color:var(--muted); font-weight:800; font-size:12px; box-shadow:none; flex: 0 0 auto; }
.filter-chip-label{ color:#ffffff; font-weight:800; font-size:12px; }
.filter-chip-value{ padding:3px 6px; border-radius:10px; background:rgba(255,255,255,0.06); color:#fff; font-weight:800; backdrop-filter:blur(4px); border:1px solid rgba(255,255,255,0.03); white-space:nowrap; min-width:30px; max-width:110px; overflow:hidden; text-overflow:ellipsis; display:inline-flex; align-items:center; gap:4px; transition: max-width 160ms ease, background 160ms ease; }
.filter-chip-value.editing{ max-width:320px; min-width:100px; }
.filter-chip-value.empty{ color:rgba(255,255,255,0.55); font-style:italic; background:transparent; border:1px dashed rgba(255,255,255,0.03); }
.value-text{ display:inline-block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; max-width:72px; }
.value-handle{ display:inline-flex; width:16px; height:16px; align-items:center; justify-content:center; border-radius:4px; background:rgba(255,255,255,0.03); cursor:pointer; padding:0; }
.value-handle i{ font-size:9px; color:rgba(255,255,255,0.85); line-height:1; }
.value-handle:hover{ background:rgba(255,255,255,0.05); }
.filter-chip:hover{ transform:translateY(-2px); }
.filter-chip.show-remove .filter-remove{ display:inline-flex; animation: fadeIn 0.25s ease; }
.new-highlight{ animation: chipPop 420ms cubic-bezier(.2,.9,.3,1); }
@keyframes chipPop{ 0%{ transform:scale(.96); opacity:.88 } 60%{ transform:scale(1.03); opacity:1 } 100%{ transform:scale(1); opacity:1 } }
.chip-sid64{ background:rgba(20,184,166,0.18); border-color:rgba(20,184,166,0.28); color:#e6fff9; }
.chip-username{ background:rgba(59,130,246,0.18); border-color:rgba(59,130,246,0.28); color:#eaf4ff; }
.chip-mail{ background:rgba(99,102,241,0.18); border-color:rgba(99,102,241,0.28); color:#eef0ff; }
.chip-ip{ background:rgba(236,72,153,0.18); border-color:rgba(236,72,153,0.28); color:#ffe9f3; }
.chip-accountid{ background:rgba(239,68,68,0.18); border-color:rgba(239,68,68,0.28); color:#ffecec; }
.chip-phone{ background:rgba(34,197,94,0.18); border-color:rgba(34,197,94,0.28); color:#eaffef; }
.chip-domain{ background:rgba(250,204,21,0.18); border-color:rgba(250,204,21,0.28); color:#1b1b1b; }
.chip-default{ background:rgba(249,115,22,0.12); border-color:rgba(249,115,22,0.18); color:#fff2e6; }
.chip-address{ background: rgba(59,130,246,0.18); border-color: rgba(59,130,246,0.28); color: #eaf4ff; }
.chip-discord{ background: rgba(236,72,153,0.18); border-color: rgba(236,72,153,0.28); color: #ffe9f3; }
.chip-firstname{ background: rgba(139,92,246,0.18); border-color: rgba(139,92,246,0.28); color: #f0eaff; }
.chip-lastname{ background: rgba(250,204,21,0.18); border-color: rgba(250,204,21,0.28); color: #1b1b1b; }
.chip-license{ background: rgba(255,99,132,0.18); border-color: rgba(255,99,132,0.28); color: #fff0f2; }
.chip-live{ background: rgba(34,197,94,0.18); border-color: rgba(34,197,94,0.28); color: #eaffef; }
.chip-pass{ background: rgba(107,114,128,0.16); border-color: rgba(107,114,128,0.26); color: #eef0f3; }
.chip-iban{ background: rgba(249,115,22,0.18); border-color: rgba(249,115,22,0.28); color: #fff7ef; }
.operator-badge{ padding:6px 12px; border-radius:999px; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.04); color:#fff; font-weight:800; font-size:13px; }
.filter-remove {
 background: rgba(255,255,255,0.10);
 border: none;
 color: #fff;
 cursor: pointer;
 font-weight: 900;
 font-size: 15px;
 width: 28px;
 height: 28px;
 aspect-ratio: 1 / 1;
 border-radius: 50%;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 margin-left: 6px;
 padding: 0;
 transition: background 0.12s ease, transform 0.12s ease, opacity 0.12s ease;
 opacity: 0.95;
 box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.filter-remove i { font-size: 11px; line-height: 0; }
.filter-remove:focus { outline: 2px solid rgba(255,255,255,0.08); outline-offset: 2px; opacity: 1; }
.filter-chip:hover .filter-remove{ opacity: 0.9; transform: translateY(-1px); }
.filter-chip-value input { border: 0; background: transparent; outline: none; width: 100%; max-width: 320px; font-weight: 700; color: inherit; font-size: 12px; }
.filter-chip-value input::selection { background: rgba(255,255,255,0.12); }
.clear-filters-btn{ display:inline-flex; align-items:center; justify-content:center; width:22px; height:22px; border-radius:6px; background:rgba(255,255,255,0.02); color:rgba(255,255,255,0.9); margin-left:6px; cursor:pointer; }
.clear-filters-btn i{ font-size:14px; line-height:1; }
.clear-filters-btn:hover{ background:rgba(255,255,255,0.04); }
.clear-filters-btn.outside{ margin-left:0; margin-right:10px; color:#ffffff; background:transparent; width:28px; height:28px; }
.clear-filters-btn.outside i{ font-size:16px; }
#suggestionsArea{ display:flex; gap:8px; flex-wrap:wrap; padding:12px; border-radius:12px; background:rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.03); box-shadow:0 8px 24px rgba(0,0,0,0.6); }
.suggestion-item{ padding:6px 10px; border-radius:12px; background:transparent; color:inherit; font-weight:800; border:none; font-size:13px; transition:transform 120ms ease, box-shadow 120ms ease; }
.suggestion-item:hover{ transform:translateY(-2px); box-shadow:0 6px 18px rgba(0,0,0,0.45); }
.suggestion-item.chip-sid64{ background:rgba(20,184,166,0.18); border:1px solid rgba(20,184,166,0.28); color:#e6fff9; }
.suggestion-item.chip-username{ background:rgba(59,130,246,0.18); border-color:rgba(59,130,246,0.28); color:#eaf4ff; }
.suggestion-item.chip-mail{ background:rgba(99,102,241,0.18); border-color:rgba(99,102,241,0.28); color:#eef0ff; }
.suggestion-item.chip-ip{ background:rgba(236,72,153,0.18); border-color:rgba(236,72,153,0.28); color:#ffe9f3; }
.suggestion-item.chip-accountid{ background:rgba(239,68,68,0.18); border-color:rgba(239,68,68,0.28); color:#ffecec; }
.suggestion-item.chip-phone{ background:rgba(34,197,94,0.18); border-color:rgba(34,197,94,0.28); color:#eaffef; }
.suggestion-item.chip-domain{ background:rgba(250,204,21,0.18); border-color:rgba(250,204,21,0.28); color:#1b1b1b; }
.suggestion-item.chip-default{ background:rgba(249,115,22,0.12); border-color:rgba(249,115,22,0.18); color:#fff2e6; }
.suggestion-item.chip-address{ background:rgba(59,130,246,0.18); border-color: rgba(59,130,246,0.28); color: #eaf4ff; }
.suggestion-item.chip-discord{ background: rgba(236,72,153,0.18); border-color: rgba(236,72,153,0.28); color: #ffe9f3; }
.suggestion-item.chip-firstname{ background: rgba(139,92,246,0.18); border-color: rgba(139,92,246,0.28); color: #f0eaff; }
.suggestion-item.chip-lastname{ background: rgba(250,204,21,0.18); border-color: rgba(250,204,21,0.28); color: #1b1b1b; }
.suggestion-item.chip-license{ background: rgba(255,99,132,0.18); border-color: rgba(255,99,132,0.28); color: #fff0f2; }
.suggestion-item.chip-live{ background: rgba(34,197,94,0.18); border-color: rgba(34,197,94,0.28); color: #eaffef; }
.suggestion-item.chip-pass{ background: rgba(107,114,128,0.16); border-color: rgba(107,114,128,0.26); color: #eef0f3; }
.suggestion-item.chip-iban{ background: rgba(249,115,22,0.18); border-color: rgba(249,115,22,0.28); color: #fff7ef; }
.search-form input[type=search]{ flex:1 1 300px; padding:8px 10px; border-radius:10px; border:none; background:transparent; color:#fff; font-size:14px; font-weight:800; }
.search-form input[type=search]::placeholder{ color:rgba(255,255,255,0.45); font-style:italic; }
.search-form button{ padding:10px 14px; border-radius:14px; border:none; background:linear-gradient(135deg,#ffffff 0%, rgba(255,255,255,0.95) 100%); color:#000; font-weight:900; box-shadow:0 6px 18px rgba(255,255,255,0.06); }
.results{ margin-top:18px; }
.result-item{ padding:14px; border-radius:10px; background:rgba(255,255,255,0.01); border:1px solid rgba(255,255,255,0.02); margin-bottom:10px; }
.result-item {
	opacity: 0;
	transform: translateY(32px) scale(0.98);
	animation: resultFadeIn 0.75s cubic-bezier(.4,0,.2,1) forwards;
	will-change: opacity, transform;
}

@keyframes resultFadeIn {
	0% {
		opacity: 0;
		transform: translateY(32px) scale(0.98);
		filter: blur(6px);
	}
	60% {
		opacity: 1;
		transform: translateY(-6px) scale(1.01);
		filter: blur(0.5px);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
		filter: blur(0);
	}
}
.result-item strong{ color:#fff; }
.snippet{ color:rgba(255,255,255,0.75); }
@media (max-width:640px){ .search-container{ padding:14px; margin:calc(7.2rem + 12px) 10px 0; } .search-form{ flex-direction:column; align-items:stretch; } }
.search-container, .search-container * ,
#searchBarWrapper, #searchBarWrapper * ,
#suggestionsArea, #suggestionsArea * ,
.filters-area-inline, .filters-area-inline * ,
.suggestion-item, .suggestion-item * {
 color: #ffffff !important;
 text-shadow: none !important;
}
.search-container,
#searchBarWrapper,
#searchBarWrapper:focus-within,
#suggestionsArea,
.suggestion-item,
.suggestion-item:hover,
.search-form button,
.clear-filters-btn,
.filter-chip,
.filter-chip-value {
 box-shadow: none !important;
}
.value-handle i, .filter-remove i, .clear-filters-btn i, .search-form button i { color: #ffffff !important; }
.filter-chip:hover, .suggestion-item:hover { text-shadow: none !important; }
.filter-remove{ opacity:1 !important; background: rgba(255,255,255,0.10) !important; display:inline-flex !important; border-radius:50% !important; width:28px !important; height:28px !important; aspect-ratio:1/1 !important; }
.filter-remove i{ font-size:12px !important; color:#ffffff !important; line-height:1 !important; }
.search-container .operator-badge, #searchBarWrapper .operator-badge, .operator-badge.operator-toggle {
 background: #ffffff !important;
 color: #0b0b0b !important;
 border:1px solid rgba(0,0,0,0.06) !important;
 box-shadow:none !important;
}
.search-container .operator-badge *, #searchBarWrapper .operator-badge * { color: #0b0b0b !important; }
#searchBtn i, button#searchBtn i { color: #0b0b0b !important; }
.main-nav { display: flex !important; gap: 12px; align-items: center; z-index: 121; }
.main-nav a { color: #ffffff !important; text-decoration: none; }
.main-nav a .link-text { color: #ffffff !important; font-weight:700; }
.main-nav .nav-indicator { z-index: 119; }
.tree-root {
 --tv-border-color: rgba(255,255,255,0.06);
 --tv-primary-color: rgba(138,161,184,0.18); 
 --tv-connector: rgba(255,255,255,0.06); 
 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
 font-size: 13px;
 color: rgba(255,255,255,0.92);
}
.tree-root ul {
 list-style: none;
 padding-left: 0px; 
 margin: 6px 0;
 position: relative;
 border-left: 1px solid var(--tv-connector);
}
.tree-root li {
 position: relative;
 padding: 6px 0 6px 6px;
}
.tree-root ul li:not(:last-child):after {
 content: '';
 position: absolute;
 left: -12px; 
 top: 12px;
 bottom: 6px;
 width: 1px;
 background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
 background-size: 2px 14px; 
}
.tree-root li:before {
 content: '';
 position: absolute;
 left: -20px; 
 top: 7px; 
 width: 18px;
 height: 0;
 border-top: 1px dotted var(--tv-connector);
 opacity: 0.9;
}
.tree-root > ul > li { padding-top: 8px; }
.tree-root > ul > li:before,
.tree-root > ul > li:last-child:after { content: unset; }
.tree-root__level,
.tree-root .tree-level {
 display: block; 
 padding: 6px 10px;
 margin: 4px 0; 
 border-radius: 6px;
 font-weight: 700;
 border: none;
 position: relative;
 z-index: 1;
 background: transparent;
 color: rgba(255,255,255,0.94);
 line-height: 1.15;
}
.tree-root__level:before,
.tree-root .tree-level:before { display:none; content:none; }
.tree-root .tree-key {
 color: rgba(255,255,255,0.96);
 font-weight: 800;
 margin-right: 1px;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: auto;
 text-shadow: none;
 background: none !important;
 border-radius: 0 !important;
 box-shadow: none !important;
 padding: 0;
}
.tree-root .tree-value {
 color: rgba(255,255,255,0.72);
 font-weight: 600;
 display: inline-block;
 margin-left: 6px;
 word-break: break-word;
}
.tree-row { display:flex; justify-content:space-between; align-items:center; gap:8px; padding:4px 0; min-height:32px; }
.tree-row .tree-key {
 font-weight:700;
 color: rgba(255,255,255,0.92);
 display:inline-flex;
 align-items:center;
 justify-content:center;
 flex: 0 0 28px; 
 width: 28px;
 margin-right:8px;
 padding:0;
 background:none !important;
 border-radius:0 !important;
}
.tree-row .tree-value { color: rgba(255,255,255,0.78); font-weight:600; text-align:left; flex:1 1 auto; margin-left:6px; display:flex; align-items:center; height:100%; }
.tree-row .tree-key,
.tree-root .tree-key,
.info-tree-list .tree-key,
.tree-root i.fas, .tree-root i.fab, .tree-root i.far,
.info-tree-list i.fas, .info-tree-list i.fab, .info-tree-list i.far {
 transform: none !important;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 height: 100%;
}
.tree-row .tree-key,
.tree-row .tree-value,
.info-tree-list .tree-key,
.info-tree-list .tree-value {
 transform: none !important;
}
.tree-row,
.info-tree-list li {
 position: static !important;
 top: 0 !important;
}
.tree-root .value-handle,
.tree-root .filter-remove,
.tree-root .filter-chip,
.tree-root .filter-chip-value,
.tree-root [class^="chip-"],
.tree-root [class*=" chip-"],
.tree-root i.fas, .tree-root i.fab, .tree-root i.far,
.info-tree-list i.fas, .info-tree-list i.fab, .info-tree-list i.far {
 background: transparent !important;
 border: none !important;
 box-shadow: none !important;
 padding: 0 !important;
 width: auto !important;
 height: auto !important;
 display: inline-block !important;
 border-radius: 0 !important;
 vertical-align: middle;
 color: inherit !important;
}
.tree-root .chip-mail, .tree-root .chip-username, .tree-root .chip-default {
 background: transparent !important;
 border-color: transparent !important;
}
.tree-root .value-handle,
.tree-root .value-handle *,
.info-tree-list .value-handle,
.info-tree-list .value-handle *,
.tree-root .filter-chip-value,
.info-tree-list .filter-chip-value,
.tree-root [class*="chip-"],
.info-tree-list [class*="chip-"],
.tree-root [class*="chip-"] *,
.info-tree-list [class*="chip-"] * {
 background: transparent !important;
 background-image: none !important;
 border: none !important;
 box-shadow: none !important;
 padding: 0 !important;
 min-width: 0 !important;
 width: auto !important;
 height: auto !important;
 border-radius: 0 !important;
 display: inline !important;
 vertical-align: middle !important;
 color: inherit !important;
}
.tree-root .tree-index { color: rgba(255,255,255,0.64); font-weight:700; margin-right:6px; }
.tree-root__level.selected,
.tree-root .tree-level.selected {
 background-color: rgba(255,255,255,0.02);
 box-shadow: none;
}
@media (max-width:640px){
 .tree-root { font-size:12px; }
 .tree-root ul { padding-left: 18px; }
}
.results-list { list-style: none; padding: 0; margin: 0; }
.results-list li { list-style: none; margin: 0 0 10px 0; }
.result-item { list-style: none; }
.result-details { margin-top:8px; }
.wtree { margin-left: -12.5px; counter-reset: item; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; }
.wtree li { list-style-type: none; margin:10px 0 10px 10px; position: relative; }
.wtree li:before {
 content: "";
 counter-increment: item;
 position: absolute;
 top: -10px;
 left: -30px;
 border-left: 1px solid #ddd;
 border-bottom: 1px solid #ddd;
 width: 30px;
 height: 15px;
}
.tree-root .tree-key,
.tree-root .tree-value,
.tree-row .tree-key,
.tree-row .tree-value,
.info-tree-list .tree-key,
.info-tree-list .tree-value {
 position: static !important;
 top: 0 !important;
 margin-top: 0 !important;
}
.tree-root i.fas, .tree-root i.fab, .tree-root i.far,
.info-tree-list i.fas, .info-tree-list i.fab, .info-tree-list i.far {
 position: static !important;
 top: 0 !important;
}
.wtree li:after {
 position: absolute;
 content: "";
 top: 5px;
 left: -30px;
 border-left: 1px solid #ddd;
 border-top: 1px solid #ddd;
 width: 30px;
 height: 100%;
}
.wtree li:last-child:after { display: none; }
.wtree li span { display: block; padding:10px; color: rgba(102,102,102,1); text-decoration:none; }
.wtree li span:hover, .wtree li span:focus { color:#000; background: rgba(0,0,0,0.05); }
.wtree > li > span { background: #DDF3FE; }
.wtree > li > ol > li > span { background: #DDEBC8; }
.wtree > li > ol > li > ol > li > span { background: #FEFCD5; }
.wtree li span.tree-leaf,
.wtree span.tree-leaf {
 background: transparent !important;
 border: none !important;
 padding: 0 !important;
 margin: 0 !important;
 display: inline !important;
 color: rgba(255,255,255,0.9) !important;
 font-weight: 600 !important;
 box-shadow: none !important;
}
.tree-leaf,
.wtree li span.tree-leaf,
.wtree span.tree-leaf {
 display: inline-flex !important;
 align-items: center !important;
 min-height: 20px !important;
 height: auto !important;
 padding: 0 !important;
 margin: 0 !important;
}
.wtree span.tree-null, .wtree span.tree-empty, .wtree span.tree-undefined {
 background: transparent !important;
 border: none !important;
 padding: 0 !important;
 color: rgba(189,189,189,1) !important;
 font-style: italic;
}
@media (max-width:640px){ .wtree { margin-left:18px; } }
:root {
 --tree-vertical-offset: -8px; 
 --tree-row-min-height: 32px;  
}
.tree-root .tree-key,
.tree-row .tree-key,
.info-tree-list .tree-key,
.tree-leaf,
.wtree li span.tree-leaf,
.wtree span.tree-leaf {
 transform: translateY(var(--tree-vertical-offset)) !important;
 transition: transform 120ms ease;
 will-change: transform;
}
.tree-row,
.tree-row .tree-key,
.tree-row .tree-value,
.tree-leaf {
 min-height: var(--tree-row-min-height) !important;
}
.tree-offset-up-2  { --tree-vertical-offset: -2px; }
.tree-offset-up-4  { --tree-vertical-offset: -4px; }
.tree-offset-up-6  { --tree-vertical-offset: -6px; }
.tree-offset-up-8  { --tree-vertical-offset: -8px; }
.tree-offset-down-2 { --tree-vertical-offset: 2px; }
.tree-offset-down-4 { --tree-vertical-offset: 4px; }
.tree-row-height-28 { --tree-row-min-height: 28px; }
.tree-row-height-32 { --tree-row-min-height: 32px; }
.tree-row-height-40 { --tree-row-min-height: 40px; }
.tree-row-height-48 { --tree-row-min-height: 48px; }
.result-summary {
 display: flex;
 gap: 12px;
 align-items: center;
 margin-bottom: 6px;
 justify-content: space-between;
 flex-wrap: wrap;
}
.result-summary .summary-left {
 display: flex;
 gap: 8px;
 align-items: center;
 flex-wrap: wrap;
}
.result-summary .summary-right {
 display: flex;
 gap: 8px;
 align-items: center;
 flex-wrap: wrap;
}
.result-summary .summary-term {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 background: rgba(255,255,255,0.04);
 padding: 4px 8px;
 border-radius: 12px;
 color: #fff;
 font-weight: 800;
 font-size: 0.92rem;
}
.result-summary .summary-term .term-text {
 padding-right: 4px;
}
.result-summary .summary-type {
 display: inline-flex;
 align-items: center;
 gap: 6px;
 background: rgba(255,255,255,0.04);
 padding: 4px 8px;
 border-radius: 12px;
 color: #fff;
 font-weight: 800;
 font-size: 0.92rem;
}
.result-summary .summary-type i { font-size: 1rem; }
.result-summary .summary-type .summary-count {
 display: inline-block;
 background: rgba(0,0,0,0.24);
 padding: 2px 6px;
 border-radius: 999px;
 font-weight: 900;
 color: #fff;
 font-size: 0.82rem;
}
.result-summary .summary-right { display:flex; gap:8px; align-items:center; }
.result-summary .summary-right .summary-type i { color: #ffd966; }
.result-summary .summary-field {
 display: inline-flex;
 align-items: center;
 gap: 6px;
 background: rgba(255,255,255,0.02);
 padding: 6px 8px;
 border-radius: 12px;
 color: #fff;
 font-weight: 700;
 font-size: 0.9rem;
 min-width: 36px;
 justify-content: center;
}
.result-summary .summary-field i { font-size: 1.02rem; color: #fff; }
.result-summary .summary-field .summary-count { margin-left:6px; display:inline-block; background: rgba(0,0,0,0.24); padding:2px 6px; border-radius:999px; font-weight:900; color:#fff; font-size:0.82rem; }
.result-summary .summary-field[title] { cursor: default; }
@media (max-width:640px) {
 .result-summary { gap:6px; }
 .result-summary .summary-badge { padding:4px 6px; font-size:0.88rem; }
}
.wtree .flagged-copy,
.tree-root .flagged-copy,
.info-tree-list .flagged-copy {
 background: rgba(255, 152, 0, 0.06);
 border-left: 3px solid rgba(255, 152, 0, 0.24);
 padding-left: 8px;
}
.wtree .flagged-copy .tree-value,
.tree-root .flagged-copy .tree-value {
 font-weight: 900;
 color: #fff;
}
.wtree .flagged-copy .tree-key,
.tree-root .flagged-copy .tree-key {
 color: #ffd180;
}
.wtree li:before,
.wtree li:after {
 content: none !important;
 border: none !important;
 position: static !important;
 width: auto !important;
 height: auto !important;
 background: transparent !important;
}
.wtree li span { display:block; padding:4px 0 !important; color: rgba(255,255,255,0.95) !important; background: transparent !important; }
.wtree > li > span,
.wtree > li > ol > li > span,
.wtree > li > ol > li > ol > li > span { background: transparent !important; }
.tree-root .tree-key,
.tree-row .tree-key,
.info-tree-list .tree-key,
.tree-leaf,
.wtree li span.tree-leaf,
.wtree span.tree-leaf {
 transform: none !important;
 top: auto !important;
 margin-top: 0 !important;
}
.tree-row, .wtree li { margin:4px 0 !important; padding:0 !important; min-height: auto !important; }
.tree-root .tree-index { color: inherit !important; font-weight:600 !important; margin-right:6px !important; background: transparent !important; }
.tree-root i.fas, .tree-root i.fab, .tree-root i.far, .info-tree-list i.fas, .info-tree-list i.fab, .info-tree-list i.far {
 position: static !important;
 top: auto !important;
 margin-right: 0.4em !important;
 color: inherit !important;
 background: transparent !important;
}
@media (max-width:640px){
 .wtree { margin-left: 12px !important; }
}

/* HiddenData UI styles (moved from inline hiddendata.php) */
.hd-tabs { display:flex; gap:12px; margin-bottom:24px; justify-content:center; flex-wrap:wrap; }
.hd-tabs .filter-chip { 
  display:inline-flex; 
  align-items:center; 
  gap:6px; 
  padding:8px 14px; 
  border-radius:999px; 
  background:rgba(255,255,255,0.02); 
  border:1px solid rgba(255,255,255,0.04); 
  color:var(--muted); 
  font-weight:800; 
  font-size:13px; 
  cursor:pointer; 
  transition: transform .12s ease, background .12s ease; 
}
.hd-tabs .filter-chip:hover { transform: translateY(-2px); background:rgba(255,255,255,0.04); }
.hd-tabs .filter-chip.active { 
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.95) 100%); 
  color: #0b0b0b; 
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 6px 18px rgba(255,255,255,0.06); 
}
.hd-panel { background: transparent; padding:0; border-radius:0; border:none; margin-top:0; }
.hd-panel label { color:rgba(255,255,255,0.65); font-weight:800; font-size:0.92rem; display:block; margin:12px 0 6px 0; letter-spacing:0.01em; }
.hd-panel input[type=file], .hd-panel input[type=password], .hd-panel textarea { background: rgba(255,255,255,0.02); color:#fff; border:1px solid rgba(255,255,255,0.04); padding:10px 14px; border-radius:12px; width:100%; box-sizing:border-box; font-size:0.95rem; font-weight:700; transition: box-shadow .18s ease, border-color .18s ease; }
.hd-panel textarea { min-height:120px; }
.hd-btn { margin-top:12px; padding:10px 14px; border-radius:10px; background:linear-gradient(135deg,#10b981 0%, #06b6d4 100%); color:#021018; font-weight:900; border:none; cursor:pointer; }
.hd-result-link { color:#eaffef; font-weight:800; }
.hd-note { color:rgba(255,255,255,0.45); font-size:0.88rem; margin-top:20px; text-align:center; font-weight:600; }
.hd-warning { color:#f7d794; font-size:0.9rem; margin-top:8px; }
.hd-hidden { display:none; }

/* Ensure the centered result message uses same look-and-feel */
.centered-animated-message { padding:18px; }

/* Additional HiddenData helpers */
.hd-container { 
  max-width: 980px; 
  margin: calc(7.2rem + 20px) auto 0; 
  padding: 28px 36px; 
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.04); 
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
}
.hd-actions { margin-top:12px; }
.hd-pre { text-align:left; white-space:pre-wrap; color:#e6ffe6; max-height:48vh; overflow:auto; padding:12px; background:rgba(0,0,0,0.06); border-radius:8px; }
.hd-result-area { margin-top:18px; }

/* Enhanced HiddenData form and button styling */
:root { --hd-primary: #3b82f6; --hd-accent: #06b6d4; --hd-muted: rgba(255,255,255,0.45); }
.hd-panel form { display: grid; gap: 16px; }
.hd-panel label { color: var(--hd-muted); font-weight:800; font-size:0.95rem; }
.hd-panel input[type=file], .hd-panel input[type=password], .hd-panel textarea { padding: 10px 12px; border-radius:10px; border:1px solid rgba(255,255,255,0.06); background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.06)); transition: box-shadow .18s ease, transform .12s ease, border-color .12s ease; }
.hd-panel input[type=file] { padding:8px; }
.hd-panel input[type=file]::-webkit-file-upload-button { background: transparent; border: none; padding: 6px 10px; border-radius:8px; background: rgba(255,255,255,0.03); color: #fff; font-weight:800; cursor:pointer; }
.hd-panel input[type=file]::-webkit-file-upload-button:hover { background: rgba(255,255,255,0.05); }
.hd-panel input:focus, .hd-panel textarea:focus { box-shadow: 0 10px 30px rgba(59,130,246,0.12); border-color: rgba(59,130,246,0.28); transform: translateY(-2px); outline: none; }
.hd-actions { display:flex; gap:12px; align-items:center; margin-top:8px; }
.hd-btn { background: linear-gradient(135deg, var(--hd-primary) 0%, var(--hd-accent) 100%); color: #fff; border: none; font-weight:900; padding: 10px 14px; border-radius: 12px; box-shadow: 0 8px 30px rgba(59,130,246,0.12); transition: transform .12s ease, box-shadow .12s ease, filter .12s ease; }
.hd-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(59,130,246,0.18); filter: brightness(1.03); }
.hd-btn:active { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(59,130,246,0.12); }
.hd-tabs .filter-chip { background: rgba(255,255,255,0.02); color: var(--hd-muted); border-radius:999px; padding:8px 14px; border:1px solid rgba(255,255,255,0.03); }
.hd-tabs .filter-chip.active { background: linear-gradient(90deg, rgba(59,130,246,0.18), rgba(6,182,212,0.10)); color: #fff; border: none; }
.hd-diagnostics summary { padding:8px 12px; border-radius:8px; background: rgba(255,255,255,0.02); display:inline-block; font-weight:800; }
.hd-diagnostics .hd-note { background: rgba(255,255,255,0.02); padding:12px; border-radius:8px; border:1px solid rgba(255,255,255,0.03); margin-top:8px; }
.hd-result-area .centered-animated-message { margin: 10px 0; }

@media (max-width:640px) {
	.hd-panel { padding: 14px; }
	.hd-panel form { gap:10px; }
	.hd-actions { flex-direction: column; align-items:stretch; }
	.hd-btn { width:100%; }
}

/* Icon button styles: large pill buttons with icons, centered like the search container */
.hd-actions { justify-content: center; }
.icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 20px;
	border-radius: 999px;
	font-weight: 900;
	font-size: 0.98rem;
	letter-spacing: 0.02em;
	border: none;
	background: rgba(0,0,0,0.35);
	color: #fff;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.02), 0 12px 40px rgba(0,0,0,0.7);
	min-width: 160px;
	cursor: pointer;
	transition: transform .18s cubic-bezier(.4,0,.2,1), box-shadow .18s cubic-bezier(.4,0,.2,1), background .12s ease;
}
.icon-btn .fa, .icon-btn i { font-size: 1.15rem; line-height:1; }
.icon-btn.large { padding: 14px 24px; font-size: 1.02rem; min-width: 200px; }
.icon-btn--light { background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.95) 100%); color: #0b0b0b; border: 1px solid rgba(0,0,0,0.04); box-shadow: 0 6px 18px rgba(255,255,255,0.06), inset 0 1px 0 rgba(255,255,255,0.6); }
.icon-btn--dark { background: rgba(0,0,0,0.35); color: #fff; border: 1px solid rgba(255,255,255,0.04); box-shadow: inset 0 1px 0 rgba(255,255,255,0.02), 0 12px 40px rgba(0,0,0,0.7); }
.icon-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 48px rgba(0,0,0,0.8), 0 0 0 4px rgba(255,255,255,0.02); }
.icon-btn--light:hover { box-shadow: 0 10px 40px rgba(255,255,255,0.10), inset 0 1px 0 rgba(255,255,255,0.8); }
.icon-btn:active { transform: translateY(0px); box-shadow: 0 8px 20px rgba(0,0,0,0.4); }
.icon-btn:focus { outline: 2px solid rgba(255,255,255,0.08); outline-offset: 3px; }

@media (max-width:640px) {
	.icon-btn { width: 100%; justify-content: center; }
	.icon-btn.large { padding: 12px 16px; min-width: auto; }
}

