/* dashboard.css — styles for the student dashboard (home.html) */

:root {
  --ink: #16202b; --ink2: #5b6573; --ink3: #9aa3b0;
  --line: #ebeef1; --line2: #e2e6ea;
  --bg: #f4f6f8; --card: #ffffff; --rail: #ffffff;
  --primary: #2f5fc0; --primary-700: #244e9e; --primary-soft: #eaf1fb;
  --green: #4e861d; --green-soft: #edf5e3;
  --amber: #b9760a; --amber-soft: #fbf1de;
  --red: #bd4a2c; --red-soft: #fbe9e3;
  --violet: #6a47b8; --violet-soft: #f0ebfa;
  --teal: #1f7a72; --teal-soft: #e6f4f2;
  --brand-ink: #5c3a12;
  --shadow: 0 1px 2px rgba(20,30,45,.04), 0 6px 20px rgba(20,30,45,.05);
  --sidebar: 256px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
/* let the window scroll (min-height, not height) so the sticky sidebar
   resolves against the viewport and stays put on scroll */
html { height: auto; }
body {
  height: auto; min-height: 100vh; overflow-x: hidden;
  font-family: 'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;
  background: var(--bg); color: var(--ink);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  display: flex; flex-direction: column;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--primary-soft); }

/* app shell */
.db-app { display: flex; flex: 1 1 auto; min-height: 0; }

/* sidebar — sticky so it stays in view while the main content scrolls */
.db-sidebar {
  width: var(--sidebar); flex: 0 0 var(--sidebar);
  background: var(--rail); border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
  position: sticky; top: 0; align-self: flex-start;
  height: 100vh; max-height: 100vh; z-index: 40;
}
.db-brand { display: flex; align-items: center; gap: 10px; padding: 16px 16px 12px; }
.db-brand img { height: 36px; width: auto; }
.db-nav { padding: 4px 12px; display: flex; flex-direction: column; gap: 2px; flex: 1 1 auto; overflow-y: auto; }
.db-nav-label { font-size: 11px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--ink3); padding: 10px 12px 4px; }
.db-nav a {
  display: flex; align-items: center; gap: 12px; padding: 8px 12px;
  border-radius: 11px; font-size: 14px; font-weight: 600; color: var(--ink2);
  transition: background .14s, color .14s;
}
.db-nav a .bi { font-size: 17px; width: 20px; text-align: center; }
.db-nav a:hover { background: #f4f6f9; color: var(--ink); }
.db-nav a.on { background: var(--primary-soft); color: var(--primary); }
.db-nav a .count { margin-left: auto; font-size: 11px; font-weight: 700; background: #eef0f3; color: var(--ink2); border-radius: 99px; padding: 2px 8px; }
.db-nav a.on .count { background: #fff; color: var(--primary); }
.db-nav a .count.hot { background: var(--amber-soft); color: var(--amber); }
.db-side-foot { border-top: 1px solid var(--line); padding: 10px 12px; display: flex; flex-direction: column; gap: 2px; }
.db-side-foot a { display: flex; align-items: center; gap: 12px; padding: 8px 12px; border-radius: 11px; font-size: 13.5px; font-weight: 600; color: var(--ink2); transition: background .14s, color .14s; }
.db-side-foot a:hover { background: #f4f6f9; color: var(--ink); }
.db-side-foot a.logout-link { color: var(--red); }
.db-side-foot a.logout-link:hover { background: var(--red-soft); }

/* main */
.db-main { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; }
.db-topbar {
  position: sticky; top: 0; z-index: 30; height: 56px;
  background: rgba(244,246,248,.88); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px; padding: 0 18px;
}
/* sidebar collapse: ← arrow inside the sidebar collapses it (desktop);
   the topbar button shows → to reopen, and is the drawer hamburger on mobile */
.db-hamb {
  display: none; width: 38px; height: 38px; border-radius: 11px;
  border: 1px solid var(--line2); background: var(--card); color: var(--ink);
  font-size: 18px; align-items: center; justify-content: center; cursor: pointer;
}
.db-sbtoggle {
  margin-left: auto; width: 30px; height: 30px; border-radius: 9px;
  border: 1px solid var(--line2); background: var(--card); color: var(--ink2);
  font-size: 14px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .14s, color .14s;
}
.db-sbtoggle:hover { background: #f4f6f9; color: var(--ink); }
@media (min-width: 993px) {
  body.sb-hidden .db-sidebar { display: none; }
  body.sb-hidden .db-hamb { display: flex; }
  .db-hamb .hamb-list { display: none; }
}
@media (max-width: 992px) {
  .db-sbtoggle { display: none; }
  .db-hamb .hamb-arrow { display: none; }
}
.db-topbar .page-title { font-size: 16px; font-weight: 700; letter-spacing: -.3px; }
.db-topbar .spacer { flex: 1 1 auto; }
.db-iconbtn {
  position: relative; width: 40px; height: 40px; border-radius: 11px;
  border: 1px solid var(--line2); background: var(--card); color: var(--ink2);
  display: flex; align-items: center; justify-content: center; font-size: 18px; cursor: pointer;
}
.db-iconbtn .pip {
  position: absolute; top: -5px; right: -5px; min-width: 18px; height: 18px;
  padding: 0 5px; border-radius: 99px; background: var(--red); color: #fff;
  font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg);
}
.db-profchip {
  display: flex; align-items: center; gap: 10px;
  padding: 5px 10px 5px 6px; border: 1px solid var(--line2);
  background: var(--card); border-radius: 99px; cursor: pointer;
}
.db-avatar {
  border-radius: 50%; background: var(--primary); color: #fff;
  font-weight: 700; display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto; letter-spacing: .3px; width: 32px; height: 32px; font-size: 12px;
}
.db-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.db-profchip .nm { font-size: 13px; font-weight: 700; line-height: 1.1; }
.db-profchip .cl { font-size: 11px; color: var(--ink2); font-weight: 600; }
.db-profchip .bi { color: var(--ink3); font-size: 12px; }
.db-profchip { transition: border-color .14s, background .14s; }
.db-profchip:hover { border-color: var(--line); background: var(--bg2, #f6f8fb); }
.db-profwrap { position: relative; }
.db-profwrap .db-profchip .sd-prof-chev { transition: transform .16s ease; }
.db-profwrap.open .db-profchip .sd-prof-chev { transform: rotate(180deg); }

/* profile popover (opened by the topbar chip; data from cached profile) */
.sd-profpop {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 1200;
  width: 290px; max-width: calc(100vw - 24px);
  background: var(--card); border: 1px solid var(--line2);
  border-radius: 16px; box-shadow: 0 18px 44px rgba(20,30,45,.16);
  overflow: hidden; opacity: 0; transform: translateY(-6px) scale(.98);
  pointer-events: none; transition: opacity .14s ease, transform .14s ease;
}
.db-profwrap.open .sd-profpop { opacity: 1; transform: none; pointer-events: auto; }
.sd-profpop-head { display: flex; align-items: center; gap: 12px; padding: 16px; border-bottom: 1px solid var(--line); }
.sd-profpop-av { width: 46px; height: 46px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 700; font-size: 16px; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; overflow: hidden; }
.sd-profpop-av img { width: 100%; height: 100%; object-fit: cover; }
.sd-profpop-name { font-size: 15px; font-weight: 800; letter-spacing: -.2px; line-height: 1.15; }
.sd-profpop-id { font-size: 11.5px; color: var(--ink3); font-weight: 600; margin-top: 2px; }
.sd-profpop-rows { padding: 8px 6px; }
.sd-profpop-row { display: flex; align-items: flex-start; gap: 11px; padding: 8px 12px; }
.sd-profpop-row .bi { color: var(--ink3); font-size: 14px; width: 16px; text-align: center; margin-top: 1px; flex: 0 0 auto; }
.sd-profpop-row .k { font-size: 10.5px; color: var(--ink3); font-weight: 700; text-transform: uppercase; letter-spacing: .4px; }
.sd-profpop-row .v { font-size: 13px; color: var(--ink1, #1b2330); font-weight: 600; word-break: break-word; }
.sd-profpop-foot { padding: 10px 12px 12px; border-top: 1px solid var(--line); }
.sd-profpop-foot a { display: flex; align-items: center; justify-content: center; gap: 7px; width: 100%; padding: 9px; border-radius: 11px; background: var(--primary-soft); color: var(--primary); font-size: 13px; font-weight: 700; text-decoration: none; }
.sd-profpop-foot a:hover { background: var(--primary); color: #fff; }

/* content */
.db-content { padding: 16px 18px 0; max-width: 1320px; width: 100%; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; flex: 1 1 auto; }

/* greeting */
.db-greet { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.db-greet h1 { font-size: 23px; font-weight: 800; letter-spacing: -.6px; }
.db-greet .sub { font-size: 14px; color: var(--ink2); font-weight: 500; margin-top: 4px; }
.db-context { display: flex; align-items: center; gap: 9px; background: var(--card); border: 1px solid var(--line); border-radius: 13px; padding: 9px 14px; box-shadow: var(--shadow); }
.db-context .bi { color: var(--primary); font-size: 15px; }
.db-context .txt { font-size: 12.5px; font-weight: 600; }
.db-context .upd { font-size: 12px; font-weight: 700; color: var(--primary); margin-left: 4px; padding-left: 11px; border-left: 1px solid var(--line2); }

/* KPIs */
.db-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.db-kpi { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 13px 15px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 8px; }
.db-kpi .kpi-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.db-kpi .ico { width: 36px; height: 36px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex: 0 0 auto; }
.db-kpi .num { font-size: 26px; font-weight: 800; letter-spacing: -1px; line-height: 1; }
.db-kpi .lab { font-size: 13px; color: var(--ink2); font-weight: 600; }
.db-kpi .lab b { color: var(--ink); }

/* main grid */
.db-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 14px; align-items: start; }
.db-col { display: flex; flex-direction: column; gap: 14px; min-width: 0; }

/* card */
.db-card { background: var(--card); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
.db-card-h { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 16px 9px; }
.db-card-h h2 { font-size: 16px; font-weight: 700; letter-spacing: -.3px; display: flex; align-items: center; gap: 9px; }
.db-card-h h2 .badge { font-size: 11px; font-weight: 700; background: var(--amber-soft); color: var(--amber); border-radius: 99px; padding: 3px 9px; }
.db-card-h .link { font-size: 13px; font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: 4px; cursor: pointer; }
.db-card-b { padding: 2px 10px 10px; }

/* rows */
.db-row { display: flex; align-items: center; gap: 12px; padding: 9px 10px; border-radius: 11px; transition: background .14s; }
.db-row:hover { background: #f7f9fb; }
.db-mono { width: 46px; height: 46px; border-radius: 12px; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; letter-spacing: -.4px; }
.db-row-main { flex: 1 1 auto; min-width: 0; }
.db-row-main .t { font-size: 14px; font-weight: 700; letter-spacing: -.2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.db-row-main .m { font-size: 12px; color: var(--ink2); font-weight: 500; margin-top: 2px; display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }

/* buttons */
.db-btn { border: none; border-radius: 10px; font-family: inherit; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 7px; transition: background .14s, transform .1s; white-space: nowrap; }
.db-btn:active { transform: translateY(1px); }
.db-btn-pri { background: var(--primary); color: #fff; height: 38px; padding: 0 16px; font-size: 13.5px; }
.db-btn-pri:hover { background: var(--primary-700); }
.db-btn-sm { height: 34px; padding: 0 14px; font-size: 13px; }
.db-btn-soft { background: var(--primary-soft); color: var(--primary); }
.db-btn-soft:hover { background: #dfeafa; }

/* divider */
.db-divider { height: 1px; background: var(--line); margin: 2px 12px; }

/* status badges */
.db-st { font-size: 11.5px; font-weight: 700; padding: 3px 9px; border-radius: 99px; display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.db-st-draft { background: #eef0f3; color: var(--ink2); }
.db-st-award { background: var(--green-soft); color: var(--green); }
.db-st-interview { background: var(--primary-soft); color: var(--primary); }
.db-st-review { background: var(--violet-soft); color: var(--violet); }
.db-st-closed { background: var(--red-soft); color: var(--red); }

/* eligible scholarship cards */
.db-elig-grid { display: grid; grid-template-columns: 1fr; gap: 8px; padding: 2px 10px 10px; }
.db-elig { display: flex; align-items: center; gap: 12px; padding: 11px; border: 1px solid var(--line); border-radius: 14px; transition: border-color .14s, box-shadow .14s, transform .12s; }
.db-elig:hover { border-color: #d4ddec; box-shadow: 0 6px 16px rgba(20,30,45,.06); transform: translateY(-1px); }
.db-elig .info { flex: 1 1 auto; min-width: 0; }
.db-elig .info .t { font-size: 14.5px; font-weight: 700; letter-spacing: -.2px; }
.db-elig .info .d { font-size: 12px; color: var(--ink2); font-weight: 500; margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 340px; }
.db-elig .award-amt { font-size: 12px; font-weight: 700; color: var(--green); margin-top: 5px; display: inline-flex; align-items: center; gap: 5px; }

/* applications status tracker */
.db-track { display: flex; height: 12px; border-radius: 99px; overflow: hidden; gap: 2px; margin: 2px 0 16px; }
.db-track > i { display: block; height: 100%; }
.db-legend { display: flex; flex-direction: column; gap: 7px; }
.db-legend .lg { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.db-legend .sw { width: 10px; height: 10px; border-radius: 3px; flex: 0 0 auto; }
.db-legend .lt { font-weight: 600; color: var(--ink2); }
.db-legend .lv { margin-left: auto; font-weight: 800; color: var(--ink); font-variant-numeric: tabular-nums; }

/* quick links */
.db-qlinks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 2px 12px 12px; }
.db-qlink { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; padding: 11px 6px 10px; border: 1px solid var(--line); border-radius: 14px; transition: border-color .14s, background .14s, transform .12s; text-align: center; }
.db-qlink:hover { border-color: #d4ddec; background: #f9fbfd; transform: translateY(-2px); }
.db-qlink .qi { width: 38px; height: 38px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex: 0 0 auto; }
.db-qlink .ql { font-size: 12.5px; font-weight: 700; line-height: 1.1; }

/* awarded strip */
.db-award-strip { display: flex; align-items: center; gap: 12px; margin-top: 14px; padding: 12px 14px; background: var(--green-soft); border-radius: 12px; }
.db-award-strip .bi { color: var(--green); font-size: 20px; }
.db-award-strip .at { font-size: 13px; font-weight: 700; }
.db-award-strip .as { font-size: 11.5px; color: var(--green); font-weight: 600; }
.db-award-strip .go { margin-left: auto; font-size: 12.5px; font-weight: 700; color: var(--green); }

/* action needed alert */
.db-action-alert { background: var(--red-soft); border: 1px solid rgba(189,74,44,.15); border-radius: 16px; padding: 18px 20px; display: flex; align-items: flex-start; gap: 15px; }
.db-action-alert > .ai { color: var(--red); font-size: 24px; flex: 0 0 auto; margin-top: 1px; }
.db-action-alert .ab { flex: 1 1 auto; }
.db-action-alert .at2 { font-size: 15px; font-weight: 800; letter-spacing: -.2px; }
.db-action-alert .as2 { font-size: 13px; color: var(--ink2); font-weight: 500; margin-top: 3px; }
.db-action-alert .doc-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.db-action-alert .dtag { font-size: 12px; font-weight: 700; background: rgba(189,74,44,.1); color: var(--red); border-radius: 8px; padding: 4px 10px; display: inline-flex; align-items: center; gap: 5px; }
.db-action-alert .btn-reup { margin-top: 12px; height: 37px; padding: 0 18px; font-size: 13px; background: var(--red); color: #fff; border-radius: 10px; border: none; font-family: inherit; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; gap: 7px; }
.db-action-alert .btn-reup:hover { background: #a33d23; }

/* backdrop */
.db-backdrop { display: none; position: fixed; inset: 0; background: rgba(15,20,28,.4); z-index: 39; }

/* skeleton loader */
.db-skel { background: linear-gradient(90deg, #f0f2f5 25%, #e8eaed 50%, #f0f2f5 75%); background-size: 200% 100%; animation: skel-shimmer 1.4s infinite; border-radius: 8px; }
@keyframes skel-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* recent section label */
.db-section-label { padding: 9px 16px 2px; font-size: 12px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; color: var(--ink3); }

/* ---- responsive ---- */
@media (max-width: 1200px) {
  .db-grid { grid-template-columns: 1fr; }
  .db-elig-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 992px) {
  .db-sidebar { position: fixed; left: 0; top: 0; transform: translateX(-100%); transition: transform .26s cubic-bezier(.2,.7,.3,1); box-shadow: 0 0 40px rgba(0,0,0,.18); }
  body.db-menu .db-sidebar { transform: translateX(0); }
  body.db-menu .db-backdrop { display: block; }
  .db-hamb { display: flex; }
  .db-kpis { grid-template-columns: repeat(2, 1fr); }
  .db-sidebar-close { display: flex; }
}
.db-sidebar-close {
  display: none;
  align-items: center; justify-content: center;
  width: 34px; height: 34px; margin-left: auto;
  border: none; background: none; cursor: pointer;
  color: var(--ink2); border-radius: 8px;
  font-size: 20px; flex-shrink: 0;
}
.db-sidebar-close:hover { background: var(--surface2); color: var(--ink1); }
@media (max-width: 760px) {
  .db-content { padding: 10px 8px 0; gap: 10px; }
  .db-topbar { padding: 0 10px; }
  .db-greet h1 { font-size: 23px; }
  .db-profchip .nm, .db-profchip .cl, .db-profchip .bi { display: none; }
  .db-profchip { padding: 4px; border: none; background: transparent; }
  .db-context { width: 100%; }
}
@media (max-width: 520px) {
  .db-kpis { grid-template-columns: 1fr 1fr; gap: 11px; }
  .db-kpi { padding: 14px; }
  .db-kpi .num { font-size: 25px; }
  .db-elig-grid { grid-template-columns: 1fr; }
  .db-qlinks { grid-template-columns: repeat(3, 1fr); }
  .db-elig .info .d { max-width: 200px; }
}

/* ---- announcements popup (styled to match, since Bootstrap CSS isn't loaded) ---- */
#announcements-container {
  position: fixed; top: 80px; right: 20px; z-index: 1050;
  max-width: 380px; width: calc(100% - 40px); pointer-events: none;
}
#announcements-container .alert {
  pointer-events: auto;
  background: var(--card); border: 1px solid var(--line2);
  border-left: 4px solid var(--amber);
  border-radius: 14px; padding: 14px 16px; margin-bottom: 10px;
  box-shadow: 0 10px 30px rgba(20,30,45,.14);
  font-size: 13.5px; color: var(--ink); line-height: 1.45;
  animation: ann-slide-in .4s cubic-bezier(.2,.7,.3,1);
}
#announcements-container .alert.slide-out { animation: ann-slide-out .3s ease forwards; }
#announcements-container .text-dark { color: var(--ink); font-weight: 500; }
#announcements-container .d-flex { display: flex; }
#announcements-container .justify-content-between { justify-content: space-between; }
#announcements-container .align-items-center { align-items: center; }
#announcements-container .mt-2 { margin-top: 12px; }
#announcements-container .mx-2 { margin: 0 8px; }
#announcements-container .navigation-controls { display: flex; align-items: center; }
#announcements-container .pagination-text { font-size: 12px; font-weight: 700; color: var(--ink2); font-variant-numeric: tabular-nums; }
#announcements-container .btn {
  border: none; border-radius: 9px; font-family: inherit; font-weight: 700;
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  height: 30px; padding: 0 12px; font-size: 13px; transition: background .14s, opacity .14s;
}
#announcements-container .btn:disabled { opacity: .4; cursor: not-allowed; }
#announcements-container .btn-outline-secondary {
  background: #f1f3f5; color: var(--ink2); width: 30px; padding: 0;
}
#announcements-container .btn-outline-secondary:not(:disabled):hover { background: #e6e9ec; }
#announcements-container .btn-warning { background: var(--amber); color: #fff; }
#announcements-container .btn-warning:hover { background: #a36808; }
#announcements-container .prev-button { border-top-right-radius: 0; border-bottom-right-radius: 0; }
#announcements-container .next-button { border-top-left-radius: 0; border-bottom-left-radius: 0; }
@keyframes ann-slide-in { from { transform: translateX(110%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes ann-slide-out { from { transform: translateX(0); opacity: 1; } to { transform: translateX(110%); opacity: 0; } }
@media (max-width: 520px) {
  #announcements-container { top: 72px; right: 10px; left: 10px; max-width: none; width: auto; }
}

/* ---- toasts ---- */
#sd-toasts {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
  z-index: 1100; display: flex; flex-direction: column; gap: 8px; align-items: center;
  pointer-events: none;
}
.sd-toast {
  display: flex; align-items: center; gap: 9px;
  background: var(--ink); color: #fff; border-radius: 12px;
  padding: 10px 16px; font-size: 13px; font-weight: 600;
  box-shadow: 0 10px 30px rgba(20,30,45,.25);
  opacity: 0; transform: translateY(8px); transition: opacity .25s, transform .25s;
  max-width: min(92vw, 480px);
}
.sd-toast.show { opacity: 1; transform: translateY(0); }
.sd-toast-success .bi { color: #7fc451; }
.sd-toast-error .bi { color: #f08c70; }
.sd-toast-info .bi { color: #8ab2f5; }

/* ---- prominent WhatsApp link in the sidebar foot ---- */
.db-side-foot a.wa-link {
  color: #1f8c4c;
  background: transparent;
  border: 1.5px solid #25a35a;
  font-weight: 700;
  justify-content: flex-start;
}
.db-side-foot a.wa-link .bi { color: #1f8c4c; }
.db-side-foot a.wa-link:hover { background: var(--green-soft); color: #1f8c4c; }
