
  .searchWidget {
	/* background: linear-gradient(135deg, #f0f8ff 0%, #fff 100%); */
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Segoe UI Symbol";
  }


  .widget{
	background:linear-gradient(135deg,#003366 0%,#006699 100%);
	border-radius:10px;padding:10px 14px;
	color:#fff;
  }
  
  .widget-row{
	display:flex;
	gap:8px;
	align-items:center;
  }
  
  .ai-badge{
	font-size:13px;
	font-weight:500;
	color:rgba(255,255,255,0.8);
	background:rgba(255,255,255,0.15);
	border:0.5px solid rgba(255,255,255,0.25);
	border-radius:6px;
	padding:3px 8px;
	white-space:nowrap;
	flex-shrink:0;
  }
  
  .w-input{
	flex:1;
	height:36px;
	border-radius:7px;
	border:none;
	background:rgba(255,255,255,0.18);
	color:#fff;
	font-size:14px;
	padding:0 0.875rem;
	outline:none;
	min-width:0;
  }
  .w-input::placeholder{
	color:rgba(255,255,255,0.6);
  }
  .w-input:focus{
	background:rgba(255,255,255,0.25);
  }
  .w-btn{
	height:36px;
	padding:0 1rem;
	border-radius:7px;
	background:#fff;
	color:#003366;
	font-size:14px;
	font-weight:500;
	border:none;
	cursor:pointer;
	flex-shrink:0;
  }
  .wpills{
	display:flex;
	flex-wrap:wrap;
	gap:15px;
	margin-top:8px;
  }
  .wpill{
	font-size:13px;
	padding:3px 10px; 
	border-radius:10px;
	background:rgba(255,255,255,0.12);
	color:rgba(255,255,255,0.85);
	cursor:pointer;
	border:0.5px solid rgba(255,255,255,0.2);
  }
  .wpill:hover{
	background:rgba(255,255,255,0.2);
  }
  
  .spacer {
	margin-bottom: 25px;
  }
  
  .w-reset-btn {
	  height:36px;
	  padding:0 1rem;
	  border-radius:7px;
	  background:#fff;
	  color:#003366;
	  font-size:14px;
	  font-weight:500;
	  border:none;
	  cursor:pointer;
	  flex-shrink:0;
  }
  
  .w-reset-btn:hover {
	  color: #000;
  }
  
  /* results tray */
  .results-zone{
	/* background:#fff; */
	padding:0 1.25rem;
	max-height:0;
	overflow:hidden;
	transition:max-height 0.4s ease,padding 0.3s ease;border-bottom:0.5px solid transparent;
  }
  .results-zone.open{
	max-height:575px;
	padding:0.875rem 1.25rem;
	border-bottom-color: #e0e0e0
  }
  
  .thinking-row {
	  display: flex;
	  align-items: center;
	  gap: 10px;
	  padding: 0.625rem 0.875rem;
	  background: #f5f5f5;
	  border-radius: 8px
  }
  
  .dots{display:flex;
	gap:4px;
  }
  
  .dot{
	width:6px;
	height:6px;
	border-radius:50%;
	background:#003366;
	animation:blink 1.2s infinite;
  }
  
  .dot:nth-child(2){
	animation-delay:.2s;
  }
  
  .dot:nth-child(3){
	animation-delay:.4s;
  }
  
  @keyframes blink{0%,80%,100%{opacity:.2}40%{opacity:1}}
  
  /* tease header row */
 .tease-header {
	 display: flex;
	 align-items: center;
	 justify-content: space-between;
	 margin-bottom: 8px;
	 display: none
 }
 
 .tease-count {
	 font-size: 14px;
	 color: #666
 }
 
 .tease-count strong {
	 color: #111
 }

 
 .dismiss-btn {
	 font-size: 13px;
	 /* color: #aaa; */
	 cursor: pointer;
	 /* padding: 2px 0; */
	 font-weight: bold;
	 padding:3px 10px; 
	 border-radius:10px;
	 background-color: rgba(0, 51, 102, 0.6);
	 color:rgba(255,255,255,0.85);
	 cursor:pointer;
	 border:0.5px solid rgba(255,255,255,0.2);
 }
 
  .dismiss-btn:hover {
	  color: #444;
  }

  
  /* mini result rows */
  .mini-list{
	display:flex;
	flex-direction:
	column;
	gap:5px;
  }
  .mrow{
	display:flex;
	align-items:center;
	gap:8px;
	padding:7px 10px;
	background:#ffffff;
	border:0.5px solid #e8e8e8;
	/* border-radius:8px; */
	border-left:5px solid #003366;
	animation:fu .22s ease both;
	cursor:pointer;
  }
  
  .mrow:hover{
	background:#f9f9f9;
  }
  
  @keyframes fu {
	  from {
		  opacity: 0;
		  transform:translateY(6px)
	  }
  
	  to {
		  opacity: 1;
		  transform: translateY(0)
	  }
  }
  
  .mrow-title {
	margin: 0;
	padding: 0;
	padding-left: 0 !important;
	  font-size: 13px;
	  font-weight: 500;
	  color: #111;
	  flex: 1;
	  min-width: 0;
	  white-space: nowrap;
	  overflow: hidden;
	  text-overflow: ellipsis;
	 
	  
  }
  
  .mrow-title mark {
	  background: #fff3a3;
	  color: inherit;
	  padding: 0 1px;
	  border-radius: 2px;
  }
  
  .mrow-tags {
	  display: flex;
	  gap: 4px;
	  flex-shrink: 0;
  }
  
  .tag {
	  font-size: 10px;
	  padding: 2px 6px;
	  border-radius: 5px;
	  background: #e3f2fd;
	  color: #1565c0;
	  white-space: nowrap;
  }
  
  .tag.new {
	  background: #e8f5e9;
	  color: #2e7d32;
  }
  
  .conf {
	  font-size: 11px;
	  font-weight: 500;
	  color: #2e7d32;
	  flex-shrink: 0;
	  min-width: 28px;
	  text-align: right;
  }

  
  /* trail link */
  .trail-link{
	display:none;
	margin-top:8px;
	padding:9px 12px;
	/* background:linear-gradient(135deg,rgba(102,126,234,0.08) 0%,rgba(118,75,162,0.08) 100%); */
	background-color: #f0f8ff;
	border:0.5px solid rgba(0,51,102,0.9);
	border-radius:var(--border-radius-lg);
	text-align:center;
	cursor:pointer;
	position:relative;
	overflow:hidden;
  }
  
  .trail-link::after{
	content:'';
	position:absolute;
	inset:0;
	background:linear-gradient(90deg,transparent,rgba(255,255,255,0.12),transparent);
	transform:skewX(-15deg) ;
	translateX(-100%);
	animation:shim 2.5s linear infinite;
  }
 
  @keyframes shim{to{transform:skewX(-15deg) translateX(220%)}}
  
  .trail-link p{
	font-size:13px;font-weight:500;color:#333333;
	margin-bottom:2px;
  }
  
  .trail-link span{
	font-size:11px;
	color:var(--color-text-tertiary);
  }
  
  .hp-well {
	min-height: 20px;
	padding: 19px;
	margin-bottom: 20px;
	/* background-color: #f5f5f5;
	border: 1px solid #e3e3e3; */
	border-radius: 4px;
	/* box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); */
  }
  
  .hp-well-lg {
	padding: 24px;
	border-radius: 6px;
  }
  
  .hp-well-sm {
	padding: 9px;
	border-radius: 3px;
  }
  

