:root{
  --bg: #0b1020;
  --panel: rgba(255,255,255,0.06);
  --panelBorder: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);
  --muted2: rgba(255,255,255,0.55);
  --primary: #7c5cff;
  --primary2: #5bdeff;
  --error: #ff4d4d;
  --success: #28d17c;
  --info: #70a5ff;
  --shadow: 0 20px 60px rgba(0,0,0,0.55);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--text);
  background: var(--bg);          /* solid/base background on the scrolling element */
  position: relative;
  overflow-x: hidden;
}

/* The “glow” layer */
body::before {
  content: "";
  position: fixed;
  inset: 0;                       /* cover the viewport */
  z-index: -1;
  pointer-events: none;

  /* Use viewport units so it scales nicely across devices */
  background:
    radial-gradient(70vw 45vh at 30% 10%, rgba(124,92,255,0.22), transparent 60%),
    radial-gradient(65vw 55vh at 80% 0%,  rgba(91,222,255,0.16), transparent 55%),
    radial-gradient(65vw 60vh at 70% 90%, rgba(40,209,124,0.10), transparent 55%);

  /* Encourage stable compositing */
  transform: translateZ(0);
  will-change: transform;
}

.container{max-width:1100px;margin:0 auto;padding:18px}
.container--wide{max-width:1500px}

.topbar{
  position:sticky;top:0;z-index:5;
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(10,16,32,0.92), rgba(10,16,32,0.70));
  border-bottom:1px solid var(--panelBorder);
}
.topbar__inner{display:flex;align-items:center;justify-content:space-between;gap:18px}
.title{margin:0;font-size:20px;letter-spacing:0.2px}
.subtitle{margin:6px 0 0;color:var(--muted);font-size:13px;max-width:780px}

.badge{
  display:flex;flex-direction:column;align-items:flex-end;
  padding:10px 12px;border:1px solid var(--panelBorder);border-radius:14px;
  background: rgba(255,255,255,0.04);
}
.badge__label{font-size:11px;color:var(--muted2)}
.badge__value{font-size:13px;color:var(--text)}
.userMenuWrap{position:relative}
.userMenuBtn{
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.userMenuBtn:hover{text-decoration:underline}
.userMenu{
  position:absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: rgba(10,16,32,0.96);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 8px;
  box-shadow: var(--shadow);
  z-index: 20;
}
.userMenuItem{
  display:block;
  width:100%;
  text-align:left;
  background: transparent;
  border: 0;
  color: var(--text);
  padding: 8px 10px;
  border-radius: 12px;
  cursor:pointer;
  font-size: 13px;
  text-decoration:none;
}
.userMenuItem:hover{background: rgba(255,255,255,0.06)}

.panel{
  background: var(--panel);
  border: 1px solid var(--panelBorder);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  margin: 16px 0;
}
.panel__header{display:flex;align-items:flex-end;justify-content:space-between;gap:14px;margin-bottom:10px}
.h2{margin:0;font-size:16px}
.small{color:var(--muted2);font-size:12px}
code{color:rgba(255,255,255,0.88)}

.field{display:flex;flex-direction:column;gap:8px;margin: 10px 0}
.label{font-size:12px;color:var(--muted)}
.promptWrap{position:relative}
.promptAssistBtn{
  position:absolute;
  bottom:10px;
  right:10px;
  opacity:30%;
  pointer-events:none;
  padding:8px 10px;
  font-size:12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  cursor:pointer;
}
.promptWrap:hover .promptAssistBtn,
.promptWrap:focus-within .promptAssistBtn{
  opacity:1;
  pointer-events:auto;
}
.promptAssistBtn:hover{background: rgba(255,255,255,0.10)}

@media (max-width: 980px){
  .promptWrap{display:flex;flex-direction:column;gap:8px}
  .promptAssistBtn{
    position:static;
    width:100%;
    opacity:1;
    pointer-events:auto;
  }
}
.textarea,.select,.file{
  width:100%;
  color:var(--text);
  background: rgba(0,0,0,0.25);
  border:1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 10px 12px;
  outline:none;
}
.input{
  color:var(--text);
  background: rgba(0,0,0,0.25);
  border:1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 10px 12px;
  outline:none;
}
.input--small{padding:8px 10px;font-weight:600;font-size:12px;border-radius:10px}
.textarea{resize:vertical;min-height:90px;line-height:1.45}
.select{height:40px}
.select:disabled{opacity:0.6}
.hint{font-size:12px;color:var(--muted2);min-height:16px}

.grid{display:grid;gap:12px}
.grid--4{grid-template-columns: repeat(4, minmax(0, 1fr))}
.grid--3{grid-template-columns: repeat(3, minmax(0, 1fr))}
.grid--2{grid-template-columns: repeat(2, minmax(0, 1fr))}
@media (max-width: 980px){.grid--4{grid-template-columns: repeat(2, minmax(0, 1fr))}}
@media (max-width: 720px){.grid--3,.grid--2,.grid--4{grid-template-columns: 1fr}}

.actions{display:flex;gap:10px;margin-top:14px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.16);
  padding: 10px 12px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  text-decoration:none;
  user-select:none;
  transition: transform .05s ease, background .2s ease, border-color .2s ease;
}
.btn:active{transform: translateY(1px)}
.btn:disabled{opacity:0.6;cursor:not-allowed}
.btn--primary{
  background: linear-gradient(135deg, rgba(124,92,255,0.95), rgba(91,222,255,0.65));
  border-color: rgba(124,92,255,0.45);
}
.btn--secondary{
  background: rgba(255,255,255,0.05);
}
.btn--small{padding:8px 10px;font-weight:600;font-size:12px;border-radius:10px}

.status{
  margin-top:12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}
.status--hidden{display:none}
.status--error{border-color: rgba(255,77,77,0.6); background: rgba(255,77,77,0.10)}
.status--success{border-color: rgba(40,209,124,0.6); background: rgba(40,209,124,0.10)}
.status--info{border-color: rgba(112,165,255,0.6); background: rgba(112,165,255,0.10)}

.empty{
  color: var(--muted);
  padding: 10px 6px;
  font-size: 13px;
}

.results{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 980px){.results{grid-template-columns: repeat(2, minmax(0, 1fr))}}
@media (max-width: 720px){.results{grid-template-columns: 1fr}}

.card{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.25);
  border-radius: 16px;
  overflow: hidden;
  display:flex;
  flex-direction: column;
}
.card__img{width:100%;height:220px;object-fit:cover;background: rgba(255,255,255,0.05)}
.card__meta{
  display:flex;justify-content:space-between;gap:10px;
  padding: 10px 12px;
  font-size: 12px;
  color: var(--muted);
}
.card__actions{display:flex;gap:8px;padding: 0 12px 12px}

.th,.td{
  text-align:left;
  padding:10px 6px;
  border-bottom:1px solid rgba(255,255,255,0.10);
  font-size:13px;
}
.th{color:rgba(255,255,255,0.72);font-weight:800}

.detailOverlay{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(8px);
  z-index:50;
}
.pwPanel{
  position:absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: min(560px, 92vw);
  background: rgba(10,16,32,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 14px;
}
.pwHeader{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.detailContent{
  position:absolute;
  inset:0;
  display:flex;
  gap:0;
}
.detailImageWrap{
  flex: 1 1 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
}
.detailImgFull{
  max-width: 100%;
  max-height: calc(100vh - 36px);
  object-fit: contain;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
}
.detailSide{
  width: min(520px, 92vw);
  height: 100%;
  background: rgba(10,16,32,0.92);
  border-left: 1px solid rgba(255,255,255,0.12);
  padding: 14px;
  overflow:auto;
}

@media (max-width: 200px){
  .detailContent{flex-direction:column;overflow:auto}
  .detailImageWrap{width:100%;padding:10px}
  .detailImgFull{width:100%;max-height:55vh}
  .detailSide{
    width:100%;
    height:auto;
    border-left:none;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
}

@media (max-width: 720px){
  .detailOverlay{overflow:auto}
  .detailContent{
    position:relative;
    flex-direction:column;
    min-height:100%;
  }
  .detailImageWrap{width:100%;padding:12px}
  .detailImgFull{width:100%;max-height:55vh}
  .detailSide{
    width:100%;
    height:auto;
    border-left:none;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
}
.detailHeader{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 10px;
}
.detailTitle{font-size:16px;font-weight:800}
.detailSub{font-size:12px;color:var(--muted);margin-top:2px}
.detailVal--wrap{
  white-space: pre-wrap;
  text-align: left;
}

.promptAssistPanel{
  position:absolute;
  inset: 18px;
  background: rgba(10,16,32,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.promptAssistHeader{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding: 14px 14px 0;
}
.promptAssistSub{
  font-size:12px;
  color:var(--muted);
  margin-top:2px;
  padding: 14px 14px 0;
}
.promptAssistHeaderActions{
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.promptAssistLang{
  display:flex;
  align-items:flex-start;
  gap:8px;
}
.promptAssistGrid{
  flex: 1 1 auto;
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 12px;
  padding: 12px 14px 14px;
  overflow:hidden;
}
@media (max-width: 980px){
  .promptAssistGrid{grid-template-columns:1fr;overflow:auto}
  .promptAssistRight{overflow:visible}
}

@media (max-width: 720px){
  .promptAssistPanel{inset:10px; overflow:auto}
  .promptAssistGrid{display:block; padding: 12px; overflow:visible}
  .promptAssistRight{overflow:visible}
  .promptAssistFooter{
    position:sticky;
    bottom:0;
    background: rgba(10,16,32,0.96);
    backdrop-filter: blur(12px);
  }
}
.promptAssistFooter{
  border-top: 1px solid rgba(255,255,255,0.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 10px 14px;
}
.assistStyles{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.assistTile{
  text-align:left;
  padding: 10px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.20);
  color: var(--text);
  cursor:pointer;
}
.assistTileRow{display:flex;gap:10px;align-items:flex-start}
@media (max-width: 500px){.assistTileRow{display:block;}}
.assistTileImg{width:60px;height:60px;object-fit:cover;border-radius:12px;border:1px solid rgba(255,255,255,0.12);background: rgba(255,255,255,0.04)}
.assistTileBody{flex:1 1 auto;min-width:0}
.assistTile:hover{background: rgba(255,255,255,0.06)}
.assistTileTitle{font-weight:800;font-size:13px}
.assistTileSub{margin-top:6px;font-size:12px;color:var(--muted)}

.promptAssistRight{overflow:auto}

.assistTemplates{
  display:flex;
  flex-direction:column;
  gap: 10px;
  margin-top: 10px;
}

.assistCategory{
  border:1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  background: rgba(0,0,0,0.12);
  overflow:hidden;
}
.assistCategorySummary{
  cursor:pointer;
  padding: 10px 12px;
  font-weight: 800;
  font-size: 13px;
  color: rgba(255,255,255,0.90);
  user-select:none;
}
.assistCategoryBody{padding: 10px 12px;display:flex;flex-direction:column;gap:10px}
.assistCategoryCount{font-weight:600;color:var(--muted2);margin-left:8px}

.assistTemplate{
  text-align:left;
  display:flex;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.20);
  color: var(--text);
  cursor:pointer;
}
.assistTemplate:hover{background: rgba(255,255,255,0.06)}
.assistPreview{width:84px;height:56px;object-fit:cover;border-radius:12px;border:1px solid rgba(255,255,255,0.12)}
.assistTemplateTitle{font-weight:800;font-size:13px}
.assistUserPromptMark{
  display:inline-block;
  width:10px;
  height:10px;
  border-radius:999px;
  background: linear-gradient(135deg, rgba(124,92,255,0.95), rgba(91,222,255,0.75));
  box-shadow: 0 0 0 2px rgba(0,0,0,0.25);
  margin-right:8px;
  vertical-align:middle;
}
.assistSharedPromptMark{
  display:inline-block;
  width:10px;
  height:10px;
  border-radius:999px;
  background: linear-gradient(135deg, rgba(58,201,123,0.95), rgba(116,255,203,0.70));
  box-shadow: 0 0 0 2px rgba(0,0,0,0.25);
  margin-right:8px;
  vertical-align:middle;
}
.assistTemplateCat{font-size:12px;color:var(--muted2);margin-top:2px}
.assistTemplateText{font-size:12px;color:var(--muted);margin-top:6px;white-space:pre-wrap}
.assistTemplateMeta{font-size:12px;color:var(--muted2);margin-top:6px}
.assistTemplateMeta b{color:rgba(255,255,255,0.82);font-weight:800}

.assistParamBar{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px}
.assistParamChip{
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.9);
  padding: 6px 10px;
  cursor:pointer;
  font-size:12px;
}
.assistParamChip:hover{background: rgba(255,255,255,0.08)}
.assistParamPopover{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.22);
}
.assistParamTitle{font-size:12px;color:var(--muted);margin-bottom:8px}
.assistParamCustom{display:flex;gap:8px;align-items:center;margin-bottom:10px}
.assistParamCustom .assistParamInput{flex:1 1 auto;min-width:140px}
.assistParamOptions{display:flex;flex-wrap:wrap;gap:8px}
.detailMeta{margin-top: 12px; display:flex; flex-direction:column; gap:8px}
.detailRow{display:flex; justify-content:space-between; gap:12px; padding:8px 10px; border:1px solid rgba(255,255,255,0.10); border-radius:12px; background: rgba(255,255,255,0.04)}
.detailKey{color:var(--muted); font-size:12px}
.detailVal{color:var(--text); font-size:12px; text-align:right; overflow:hidden; text-overflow:ellipsis}

.conversation-list{
  display:flex;
  flex-direction:column;
  gap:10px;
  max-height:360px;
  overflow-y:auto;
  padding-right:6px;
}
.conversation-item{
  display:block;
  width:100%;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:14px;
  background:rgba(255,255,255,0.02);
  padding:12px;
  text-align:left;
  color:var(--text);
  cursor:pointer;
  transition:border-color .2s ease, background .2s ease;
}
.conversation-item:hover{
  border-color:rgba(124,92,255,0.4);
}
.conversation-item--active{
  border-color:var(--primary);
  background:rgba(124,92,255,0.12);
}
.conversation-item__top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:8px;
}
.conversation-item__title{
  font-weight:700;
}
.conversation-item__meta{
  font-size:12px;
  color:var(--muted2);
}
.conversation-item__preview{
  margin-top:6px;
  font-size:13px;
  color:var(--muted);
}
.chat-messages{
  display:flex;
  flex-direction:column;
  gap:12px;
  max-height:420px;
  overflow-y:auto;
  padding-right:6px;
}
.panel--collapsible{
  padding:0;
}
.panel__summary{
  list-style:none;
  cursor:pointer;
  padding:16px;
}
.panel__summary::-webkit-details-marker{display:none}
.panel__summary::after{
  content:"▾";
  float:right;
  color:var(--muted2);
  font-size:14px;
  transform: translateY(2px);
}
.panel--collapsible[open] .panel__summary::after{content:"▴"}
.panel__summary .panel__header{margin-bottom:0}
.panel__body{padding:16px}
.conversation-modal{
  position:fixed;
  inset:0;
  z-index:30;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
}
.conversation-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
  backdrop-filter:blur(4px);
}
.conversation-modal__content{
  position:relative;
  width:min(1100px, 92vw);
  max-height:80vh;
  padding:20px;
  background:rgba(10,16,32,0.92);
  border:1px solid var(--panelBorder);
  border-radius:18px;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  gap:12px;
  pointer-events:auto;
  overflow: auto;
}
.conversation-modal__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.conversation-modal__header h3{
  margin:0;
  font-size:18px;
}
.conversation-modal__headerActions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
}
.chat-history-card{
  text-align:left;
  cursor:pointer;
  padding:0;
}
.chat-history-card__meta{
  padding:12px 12px 10px;
  border-bottom:1px solid rgba(255,255,255,0.10);
}
.chat-history-card__title{
  font-weight:800;
  font-size:13px;
  color: var(--muted);
}
.chat-history-card__sub{
  margin-top:4px;
  font-size:12px;
  color:var(--muted2);
}
.chat-history-card__body{
  padding:10px 12px 12px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.chat-history-card__prompt{
  font-size:12px;
  color:var(--muted2);
}
.chat-history-card__last{
  font-size:13px;
  color:var(--muted);
}
.chat-history-card--active{
  border-color:rgba(124,92,255,0.55);
  box-shadow: 0 0 0 1px rgba(124,92,255,0.15);
}
.chat-history-row{cursor:pointer}
.chat-history-row:hover td{background: rgba(124,92,255,0.06)}
.chat-history-row--active td{background: rgba(124,92,255,0.10)}
.conversation-modal[hidden]{
  display:none;
}
.chat-messages{
  display:flex;
  flex-direction:column;
  gap:12px;
  max-height:420px;
  overflow-y:auto;
  padding-right:6px;
  margin-bottom:12px;
}
.chat-message{
  max-width:80%;
  width:80%;
  align-self:flex-start;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.12);
  padding:12px;
  background:rgba(255,255,255,0.02);
  display:flex;
  flex-direction:column;
  gap:6px;
  white-space:normal;
}
.chat-message--assistant{
  align-self:flex-start;
  background:rgba(124,92,255,0.08);
  border-color:rgba(124,92,255,0.4);
}
.chat-message--user{
  align-self:flex-end;
  background:rgba(91,222,255,0.08);
  border-color:rgba(91,222,255,0.4);
}
.chat-message--system{
  align-self:flex-start;
  background:rgba(255,255,255,0.05);
  border-style:dashed;
}
.chat-message__content{
  font-size:14px;
  line-height:1.6;
  white-space:pre-line;
}
.chat-message--assistant{
  background:rgba(124,92,255,0.08);
  border-color:rgba(124,92,255,0.4);
}
.chat-message--user{
  background:rgba(91,222,255,0.08);
  border-color:rgba(91,222,255,0.4);
}
.chat-message--system{
  background:rgba(255,255,255,0.05);
  border-style:dashed;
}
.chat-message__header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:8px;
  margin-bottom:6px;
}
.chat-message__role{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:0.6px;
  color:var(--muted2);
}
.chat-message__time{
  font-size:11px;
  color:var(--muted2);
}
.chat-message__content{
  font-size:14px;
  line-height:1.6;
}
.chat-message__attachments{
  margin-top:8px;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.chat-attachment{
  font-size:12px;
  color:var(--muted2);
}
.chat-message__usage{
  margin-top:8px;
}
.chat__system-prompt{
  margin-top:4px;
  color:var(--muted);
}
.checkboxField{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:6px;
  font-size:13px;
  cursor:pointer;
}
.checkboxField input{
  accent-color:var(--primary);
  width:16px;
  height:16px;
}

.siteFooter{
  margin-top: 32px;
  padding: 24px 0 32px;
  border-top: 1px solid var(--panelBorder);
}
.siteFooter__links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  font-size:13px;
  color:var(--muted);
}
.siteFooter__links a{
  color:inherit;
  text-decoration:underline;
}
.siteFooter__links a:hover{
  color:var(--text);
}
.siteFooter__meta{
  margin-top:8px;
  font-size:12px;
  color:var(--muted2);
}

        /* Footer */
        footer {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
            padding: 3rem 2rem 1.5rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            margin-bottom: 1rem;
            color: var(--accent-cyan);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: var(--text-secondary);
            text-decoration: none;
            display: block;
            padding: 0.25rem 0;
            transition: color 0.2s;
        }

        .footer-section a:hover {
            color: var(--text-primary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
