
:root{
  --bg:#0f172a;       /* slate-900 */
  --panel:#111827;    /* gray-900 */
  --soft:#1f2937;     /* gray-800 */
  --text:#e5e7eb;     /* gray-200 */
  --muted:#9ca3af;    /* gray-400 */
  --brand:#3b82f6;    /* blue-500 */
  --brand-2:#60a5fa;  /* blue-400 */
  --chip:#0ea5e9;     /* sky-500 */
  --chip-bg:#0b1720;
  --danger:#ef4444;
  --radius:14px;
  --shadow:0 10px 25px rgba(0,0,0,.25);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji','Segoe UI Emoji';
  background: radial-gradient(1200px 600px at 20% 0%, #111827 0%, #0b1020 40%, #0f172a 100%);
  color:var(--text);
}

.container{
  max-width:900px;
  margin-inline:auto;
  padding:40px 20px 80px;
}

h1{margin:0 0 8px;font-size:32px;letter-spacing:.3px}
.subtitle{margin:0 0 24px;color:var(--muted)}

/* Add a black background color to the top navigation */
.topnav {
  background-color: #04AA6D;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.nav-item{
    border-left: 1px solid white
}

.UMC{
    display: inline-block;
    padding: 5px;
    margin: 10px;
    background-color:antiquewhite;
    color:black;
    border-style:solid;
    border-width: 3px;
    border-color: orange;
}

.UMC:hover{
    display: inline-block;
    padding: 5px;
    margin: 10px;
    background-color:aliceblue;
    color:black;
    border-style:solid;
    border-width: 3px;
    border-color: orange;
    cursor:pointer;
}

.Click{
    background-color: burlywood
}

.Click:hover{
    background-color: burlywood
}

.search-area{
  position:relative;
  display:flex;
  gap:10px;
  align-items:center;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  padding:14px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

#searchInput{
  flex:1;
  padding:12px 14px;
  font-size:16px;
  background:var(--panel);
  border:1px solid rgba(255,255,255,.08);
  color:var(--text);
  border-radius:10px;
  outline: none;
}

#searchInput:focus{border-color:var(--brand)}

#searchBtn{
  padding:12px 16px;
  border-radius:10px;
  background:linear-gradient(180deg, var(--brand), var(--brand-2));
  color:white;
  border:0;
  font-weight:600;
  cursor:pointer;
  transition:transform .05s ease;
}
#searchBtn:active{transform:translateY(1px)}
#searchBtn:hover{
    background:blue;
}

#searchBtn2{
  padding:12px 16px;
  display: block;
  margin: 10px auto;
  border-radius:10px;
  background:linear-gradient(180deg, var(--brand), var(--brand-2));
  color:white;
  border:0;
  font-weight:600;
  cursor:pointer;
  transition:transform .05s ease;
}
#searchBtn2:active{transform:translateY(1px)}
#searchBtn2:hover{
    background:blue;
}

.suggestions{
  position:absolute;
  left:14px;
  right:140px; /* leave space for button */
  top:64px;
  list-style:none;
  margin:8px 0 0;
  padding:6px;
  background:var(--panel);
  border:1px solid rgba(255,255,255,.08);
  border-radius:10px;
  box-shadow:var(--shadow);
  max-height:260px;
  overflow:auto;
  display:none;
  z-index:5;
}
.suggestions.show{display:block}
.suggestions li{
  padding:10px 12px;
  border-radius:8px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.suggestions li small{color:var(--muted)}
.suggestions li:hover{background:var(--soft)}

.results-wrap{
  margin-top:20px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.results-header{
  display:flex;justify-content:space-between;align-items:center;
  padding:12px 14px;border-bottom:1px solid rgba(255,255,255,.08);
  color:var(--muted)
}

#panelArea{
  margin-top:20px;
  min-height: 150px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow: auto;
}


.linklike{
  background:transparent;border:0;color:var(--brand);cursor:pointer;padding:6px 8px;border-radius:8px;
}
.linklike:hover{background:rgba(59,130,246,.15)}

.results{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  padding:12px 14px 18px;
  min-height:56px;
}

.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  background:var(--chip-bg);
  border:1px solid rgba(14,165,233,.35);
  border-radius:999px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
.chip-label{font-size:14px}
.chip-remove{
  background:transparent;border:0;color:var(--muted);font-size:18px;line-height:1;cursor:pointer;border-radius:8px;
}
.chip-remove:hover{color:white;background:rgba(255,255,255,.08)}

.panel{
    display: block;
    width: 100%;
}
