:root {
  /* Palette — cool "chalk & ink" study surface, single teal signal accent */
  --ink: #1c2541;
  --ink-soft: #3a4668;
  --surface: #f6f8fc;
  --card: #ffffff;
  --line: #e2e7f1;
  --signal: #0b8a8a;
  --signal-press: #096f6f;
  --muted: #6b748f;

  /* Semaphores — content-meaningful, the dashboard's signature */
  --green: #2e9e5b;
  --amber: #d99100;
  --grey: #9aa3b7;
  --red: #d1453b;

  --radius: 10px;
  --shadow: 0 1px 2px rgba(28, 37, 65, .06), 0 6px 20px rgba(28, 37, 65, .06);
  --display: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: ui-monospace, "SF Mono", "Cascadia Code", "Roboto Mono", monospace;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.5;
}
a { color: var(--signal); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: var(--display); letter-spacing: -.01em; line-height: 1.2; }
h1 { font-size: 1.7rem; margin: 0 0 .25rem; }
h2 { font-size: 1.25rem; }

.wrap { max-width: 1040px; margin: 0 auto; padding: 1.5rem 1.25rem 4rem; }
.muted { color: var(--muted); }
.small { font-size: .85rem; }
.mono { font-family: var(--mono); }

/* Top bar */
.topbar {
  background: var(--ink);
  color: #fff;
}
.topbar .inner {
  max-width: 1040px; margin: 0 auto; padding: .75rem 1.25rem;
  display: flex; align-items: center; gap: 1.25rem;
}
.brand { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--display); font-weight: 700; color: #fff; letter-spacing: -.02em; }
.brand:hover { text-decoration: none; }
.brand img { display: block; }
.brand-name { font-size: 1.2rem; font-weight: 800; letter-spacing: -.03em; }
.brand-name span { color: #7fe3e3; }
.brand-acorn { display: block; margin-left: -.2rem; }
.topbar nav { display: flex; gap: 1rem; margin-left: auto; align-items: center; }
.topbar nav a { color: #cdd4e6; font-size: .92rem; }
.topbar nav a:hover { color: #fff; text-decoration: none; }
.lang-switch select {
  width: auto; padding: .3rem 1.6rem .3rem .55rem; font-size: .85rem;
  color: #cdd4e6; background-color: transparent; border: 1px solid #3a4668;
  border-radius: 6px; cursor: pointer;
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23cdd4e6' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .5rem center;
}
.lang-switch select:hover { color: #fff; border-color: #5a6890; }
.lang-switch option { color: var(--ink); background: #fff; }

/* Cards */
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.25rem;
}
.grid { display: grid; gap: 1rem; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 720px) { .grid.cols-2, .grid.cols-3 { grid-template-columns: 1fr; } }

/* Buttons & forms */
.btn {
  display: inline-block; background: var(--signal); color: #fff;
  border: none; border-radius: 8px; padding: .6rem 1.05rem; font-size: .95rem;
  font-weight: 600; cursor: pointer; font-family: var(--body);
}
.btn:hover { background: var(--signal-press); text-decoration: none; }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn:disabled { opacity: .5; cursor: not-allowed; }
label { font-weight: 600; font-size: .9rem; display: block; margin: .8rem 0 .25rem; }
input[type=text], input[type=password], input[type=number], input[type=email],
select, textarea {
  width: 100%; padding: .55rem .65rem; border: 1px solid var(--line);
  border-radius: 8px; font: inherit; background: #fff; color: var(--ink);
}
textarea { resize: vertical; }
input[type=text]:focus, input[type=password]:focus, input[type=number]:focus,
input[type=email]:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--signal);
  box-shadow: 0 0 0 3px rgba(11, 138, 138, .12);
}
.help { color: var(--muted); font-size: .82rem; margin-top: .15rem; }
.checkrow { display: flex; align-items: center; gap: .5rem; margin: .5rem 0; }
.checkrow input { width: auto; }
.checkrow label { margin: 0; }

/* Auth (login / sign up) — centered branded card */
.auth-wrap { display: flex; justify-content: center; padding: 2.5rem 1rem 4rem; }
.auth-card {
  width: 100%; max-width: 400px; border-radius: 18px; padding: 2.5rem 2.5rem 2.1rem;
  box-shadow: 0 1px 2px rgba(28,37,65,.06), 0 12px 32px rgba(28,37,65,.08);
}
.auth-brand { display: flex; flex-direction: column; align-items: center; text-align: center; }
.auth-brand img { display: block; }

/* Split login: video on the left, the login pane on the right */
.auth-split {
  display: flex; align-items: stretch; gap: 2rem;
  min-height: calc(100vh - 60px); padding: 2rem 1rem;
}
.auth-media { flex: 1 1 50%; display: flex; align-items: center; justify-content: center; }
.auth-video {
  display: block; width: 100%; max-width: 460px; height: auto; object-fit: contain;
  opacity: .6; border-radius: 16px; background: #fff;
}
.auth-pane { flex: 1 1 50%; display: flex; align-items: center; justify-content: center; }
.auth-pane .auth-card { margin: 0; }
@media (max-width: 760px) {
  .auth-split { flex-direction: column; gap: 1rem; min-height: 0; padding: 1.5rem 1rem 3rem; }
  .auth-media { order: -1; }
  .auth-video { max-width: 220px; }
}
.auth-wordmark { font-size: 1.65rem; margin-top: .8rem; }
.auth-wordmark span { color: var(--signal); }     /* teal "e" on the white card */
.auth-sub { color: var(--muted); font-size: .9rem; margin: .35rem 0 0; }
.auth-card label:first-of-type { margin-top: 1.6rem; }
.auth-submit {
  width: 100%; margin-top: 1.5rem; padding: .8rem; font-size: .98rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
}
.auth-alt { text-align: center; color: var(--muted); font-size: .9rem; margin: 1.1rem 0 0; }
.auth-alt a { font-weight: 600; }

/* Eyebrow / tags */
.eyebrow {
  font-family: var(--mono); font-size: .72rem; text-transform: uppercase;
  letter-spacing: .08em; color: var(--muted);
}
.tag {
  font-family: var(--mono); font-size: .72rem; background: #eef1f8;
  color: var(--ink-soft); padding: .15rem .45rem; border-radius: 5px;
}

/* Messages */
.flash { padding: .7rem 1rem; border-radius: 8px; margin-bottom: 1rem; font-size: .92rem; }
.flash.success { background: #e7f6ec; color: #1c5e36; }
.flash.error { background: #fbe9e7; color: #8a2a22; }
.flash.info { background: #e9f1fb; color: #234a7a; }

/* Tables */
table { width: 100%; border-collapse: collapse; font-size: .92rem; }
th, td { text-align: left; padding: .6rem .5rem; border-bottom: 1px solid var(--line); }
th { color: var(--muted); font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; }

/* Semaphore dots — the signature element */
.light { display: inline-block; width: 11px; height: 11px; border-radius: 50%; vertical-align: middle; }
.light.green { background: var(--green); box-shadow: 0 0 0 3px rgba(46,158,91,.18); }
.light.amber { background: var(--amber); box-shadow: 0 0 0 3px rgba(217,145,0,.18); }
.light.grey  { background: var(--grey);  box-shadow: 0 0 0 3px rgba(154,163,183,.18); }
.light.red   { background: var(--red);   box-shadow: 0 0 0 3px rgba(209,69,59,.18); }
.semaphores { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.sema { display: flex; align-items: center; gap: .5rem; }
.sema .n { font-family: var(--display); font-size: 1.6rem; font-weight: 700; }
.sema .lbl { font-size: .8rem; color: var(--muted); }

/* Aggregate bars */
.bar { background: #eef1f8; border-radius: 6px; height: 10px; overflow: hidden; }
.bar > span { display: block; height: 100%; background: var(--signal); }
.barrow { display: grid; grid-template-columns: 160px 1fr 60px; gap: .75rem; align-items: center; margin: .4rem 0; }

/* ── Chat room ────────────────────────────────────────────── */
.chat-shell { max-width: 760px; margin: 0 auto; }
.chat-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; margin-bottom: 1rem;
}
.chat-title { font-size: 1.35rem; margin: .3rem 0 0; }
.chat-status {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: .45rem;
  background: #effafa; border: 1px solid #b8e0e0; color: #0b6f6f;
  border-radius: 999px; padding: .4rem .8rem; font-size: .8rem; font-weight: 600;
}
.thread {
  background: #fbfcfe; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); padding: 1.4rem; min-height: 50vh;
  display: flex; flex-direction: column; gap: 1.1rem;
}
/* Message rows: assistant gets an avatar, user hugs the right */
.msg { display: flex; gap: .7rem; align-items: flex-start; max-width: 88%; }
.msg.assistant { align-self: flex-start; }
.msg.user { align-self: flex-end; max-width: 80%; justify-content: flex-end; }
.msg .avatar { flex: 0 0 auto; margin-top: 2px; display: block; }
.bubble {
  padding: .8rem 1rem; border-radius: 16px; font-size: .95rem; line-height: 1.55;
  white-space: pre-wrap; overflow-wrap: anywhere;
}
.bubble.assistant { background: #eef3fb; color: var(--ink); border-top-left-radius: 5px; }
.bubble.user { background: var(--signal); color: #fff; border-top-right-radius: 5px; }
.bubble img { max-width: 100%; border-radius: 10px; margin-top: .6rem; display: block; }
.bubble code {
  font-family: "SF Mono", ui-monospace, Menlo, Consolas, monospace; font-size: .85em;
  background: rgba(15, 21, 40, .08); padding: .1em .35em; border-radius: 5px;
}
.bubble.user code { background: rgba(255, 255, 255, .22); color: #fff; }
.bubble pre {
  background: #0f1528; color: #e6ecff; padding: .7rem .9rem; border-radius: 10px;
  overflow-x: auto; margin: .5rem 0; white-space: pre;
}
.bubble pre code { background: none; padding: 0; color: inherit; }

/* Teacher-facing class report */
.report-body { max-width: 72ch; }
.report-body h3 {
  font-size: 1rem; margin: 1.1rem 0 .3rem;
  padding-bottom: .25rem; border-bottom: 1px solid var(--line);
}
.report-body p { margin: .4rem 0; font-size: .95rem; }
.report-body ul, .report-body ol { margin: .4rem 0 .6rem; padding-left: 1.3rem; }
.report-body li { margin: .25rem 0; font-size: .95rem; }
.report-body code {
  font-family: var(--mono); font-size: .85em;
  background: rgba(15, 21, 40, .07); padding: .1em .35em; border-radius: 5px;
}

/* Multiple-choice answer pills */
.choices { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .9rem; }
.choice {
  font: 500 .9rem var(--body); color: var(--ink); background: #fff;
  border: 1.5px solid var(--line); border-radius: 11px; padding: .6rem 1rem; cursor: pointer;
}
.choice:hover { border-color: var(--signal); color: var(--signal-press); background: #effafa; }

/* In-chat code editor (response_format = code) */
.code-editor {
  margin-top: .9rem; border: 1px solid #2a3556; border-radius: 12px;
  overflow: hidden; background: #0f1528; box-shadow: var(--shadow);
}
.code-editor-head {
  display: flex; align-items: center; gap: 6px;
  padding: .5rem .8rem; background: #1c2541; border-bottom: 1px solid #2a3556;
}
.code-dot { width: 10px; height: 10px; border-radius: 50%; background: #3a4668; }
.code-lang {
  margin-left: auto; font: 600 .72rem var(--mono); letter-spacing: .04em;
  text-transform: lowercase; color: #7fe3e3;
}
.code-body { display: flex; align-items: stretch; background: #0f1528; }
.code-gutter {
  flex: 0 0 auto; min-width: 2.4em; overflow: hidden; user-select: none;
  padding: .9rem .5rem .9rem 0; text-align: right;
  font: .88rem/1.55 var(--mono); color: #4a5578;
  background: #0d1222; border-right: 1px solid #1d2646;
}
.code-gutter pre { margin: 0; font: inherit; }
.code-input {
  display: block; flex: 1; width: 100%; min-height: 150px; max-height: 360px;
  border: none; outline: none; resize: vertical; tab-size: 2;
  white-space: pre; overflow-x: auto;
  padding: .9rem 1rem .9rem .7rem; font: .88rem/1.55 var(--mono);
  color: #eaf0ff; background: #0f1528;
}
.code-input:focus { box-shadow: none; }
.code-input::placeholder { color: #6b748f; }
.code-editor-bar {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: .55rem .7rem .55rem .9rem; background: #141b33; border-top: 1px solid #2a3556;
}
.code-hint { font-size: .78rem; color: #8ea2d6; margin-right: auto; }
.code-editor-bar { justify-content: flex-end; }
.run-btn { background: #1c2541; border: 1px solid #3a4668; }
.run-btn:hover { background: #26305a; }
.run-btn:disabled { opacity: .5; cursor: not-allowed; }
.code-check-note {
  padding: .4rem .9rem; font-size: .76rem; color: #8ea2d6;
  background: #141b33; border-top: 1px solid #2a3556;
}

/* Sandbox run output (untrusted program output; always set via textContent) */
.code-run-out { border-top: 1px solid #2a3556; background: #0b101f; }
.code-run-status {
  padding: .5rem .9rem .25rem; font: 600 .78rem var(--mono); color: #8ea2d6;
}
.code-run-status.run-ok { color: #6fe3a5; }
.code-run-status.run-fail { color: #ff9d8f; }
.code-run-stream {
  margin: 0; padding: .35rem .9rem .6rem; max-height: 220px; overflow: auto;
  font: .82rem/1.5 var(--mono); white-space: pre-wrap; word-break: break-word;
}
.code-run-stream.out { color: #d9e2ff; }
.code-run-stream.err { color: #ff9d8f; }

/* Composer: bordered container with focus ring + icon send button */
.composer {
  display: flex; align-items: flex-end; gap: .5rem; margin-top: 1rem;
  border: 1.5px solid var(--line); border-radius: 16px; background: #fff;
  padding: .5rem .5rem .5rem 1rem; transition: border-color .15s, box-shadow .15s;
}
.composer:focus-within { border-color: var(--signal); box-shadow: 0 0 0 3px rgba(11,138,138,.10); }
.composer textarea {
  flex: 1; min-height: 26px; max-height: 160px; border: none; background: transparent;
  padding: .45rem 0; resize: none;
}
.composer textarea:focus { outline: none; box-shadow: none; }
.composer-send {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 11px; border: none;
  background: var(--signal); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.composer-send:hover { background: var(--signal-press); }
.composer-send:disabled { opacity: .5; cursor: not-allowed; }

.note { font-size: .8rem; color: var(--muted); margin-top: .55rem; min-height: 1.1em; }
.note.done, .note.ended {
  display: flex; align-items: center; gap: .6rem; padding: .8rem 1rem;
  border-radius: 12px; font-size: .88rem; font-weight: 500;
}
.note.done { background: #effafa; border: 1px solid #b8e0e0; color: #0b6f6f; }
.note.ended { background: #fbe9e7; border: 1px solid #f3cfc9; color: #8a2a22; }
.note.done::before, .note.ended::before {
  content: ""; flex: 0 0 auto; width: 10px; height: 10px; border-radius: 50%;
}
.note.done::before { background: var(--green); }
.note.ended::before { background: var(--red); }

/* Tutor typing indicator (three blinking signal dots) */
.typing {
  background: #eef3fb; border-radius: 16px; border-top-left-radius: 5px;
  padding: .85rem 1rem; display: flex; gap: .4rem; align-items: center;
}
.typing .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--signal); animation: tk-blink 1.3s infinite; }
.typing .dot:nth-child(2) { animation-delay: .18s; }
.typing .dot:nth-child(3) { animation-delay: .36s; }
.typing .lbl { font-size: .8rem; color: var(--muted); margin-left: .3rem; }
@keyframes tk-blink { 0%,80%,100% { opacity: .25; transform: translateY(0); } 40% { opacity: 1; transform: translateY(-3px); } }

.eval-card { margin-top: 1rem; border-left: 4px solid var(--green); }
.eval-score { font-family: var(--display); font-weight: 700; font-size: 2.1rem; margin: .1rem 0 .3rem; line-height: 1; }
.eval-score .muted { font-size: 1rem; font-weight: 600; }
.eval-raw { margin-top: .8rem; }
.eval-raw summary { cursor: pointer; }

/* Conversation log embedded in the teacher's transcript card */
.thread-log {
  background: transparent; border: none; box-shadow: none;
  padding: 0; min-height: 0;
}

/* Task images strip on join page */
.imgstrip { display: flex; gap: .6rem; flex-wrap: wrap; margin: .75rem 0; }
.imgstrip img { max-height: 130px; border-radius: 8px; border: 1px solid var(--line); }

@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }
:focus-visible { outline: 2px solid var(--signal); outline-offset: 2px; }

/* ── Audio bubbles + voice recording ─────────────────────────────── */
.bubble-audio { display: block; margin-top: .5rem; width: 100%; max-width: 320px; height: 36px; }
.voice-controls { display: flex; align-items: center; gap: .75rem; margin-top: 1rem; }
.btn.record { background: #fff; color: var(--signal); border: 1.5px solid var(--signal); }
.btn.record .dot { color: var(--red); }
.btn.record.recording { background: var(--red); color: #fff; border-color: var(--red); animation: recpulse 1.4s ease-in-out infinite; }
@keyframes recpulse { 0%,100% { box-shadow: 0 0 0 0 rgba(209,69,59,.4); } 50% { box-shadow: 0 0 0 8px rgba(209,69,59,0); } }
.rec-status { min-height: 1.1em; }

/* ── Join waiting room ───────────────────────────────────────────── */
.waiting { border-left: 4px solid var(--signal); }
.waiting-orb {
  width: 64px; height: 64px; margin: .5rem auto 0; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #7fe3e3, var(--signal));
  box-shadow: 0 0 0 0 rgba(11,138,138,.35); animation: breathe 3.2s ease-in-out infinite;
}
@keyframes breathe { 0%,100% { transform: scale(.92); box-shadow: 0 0 0 0 rgba(11,138,138,.35); } 50% { transform: scale(1.05); box-shadow: 0 0 0 18px rgba(11,138,138,0); } }

/* ── Dashboard live control bar ──────────────────────────────────── */
.livebar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; }
.livebar-actions { display: flex; gap: .5rem; align-items: center; }

/* ── Broadcast / projector view ──────────────────────────────────── */
.bcast-body {
  margin: 0; min-height: 100vh; color: #eaf0ff;
  background: radial-gradient(1200px 700px at 50% 18%, #243056 0%, #18203b 45%, #0f1528 100%);
  overflow: hidden;
}
.bcast-fx { position: fixed; inset: 0; pointer-events: none; z-index: 5; }
.bcast { position: relative; z-index: 2; display: flex; flex-direction: column; min-height: 100vh; padding: 1.4rem 2rem 1rem; }
.bcast-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.bcast-eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; color: #8ea2d6; margin: 0 0 .2rem; }
.bcast-title { font-family: var(--display); font-size: 2rem; margin: 0; color: #fff; }
.bcast-controls { display: flex; align-items: center; gap: .6rem; }
.bcast-btn { padding: .45rem .9rem; }
.bcast-controls .btn.ghost { color: #eaf0ff; border-color: #3a4668; background: rgba(255,255,255,.04); }
.bcast-live { display: inline-flex; align-items: center; gap: .4rem; font-size: .9rem; color: #cdd8f5; background: rgba(255,255,255,.05); padding: .35rem .7rem; border-radius: 999px; }

.sky { position: relative; flex: 1; margin: 1rem 0; }
.sky-empty { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #7e8cb8; font-size: 1.1rem; }

.collective {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  text-align: center; z-index: 1; pointer-events: none;
}
.collective-glow {
  position: absolute; left: 50%; top: 50%; width: 360px; height: 360px; margin: -180px 0 0 -180px;
  border-radius: 50%; background: radial-gradient(circle, rgba(127,227,227,.5), rgba(127,227,227,0) 68%);
  transition: opacity 1.2s ease, transform 1.2s ease; opacity: .25;
}
.collective-num { position: relative; font-family: var(--display); font-size: 3.4rem; font-weight: 700; color: #fff; line-height: 1; }
.collective-lbl { position: relative; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: #aebbe6; }

.lanterns { position: absolute; inset: 0; }
.lantern { position: absolute; transform: translate(-50%,-50%); text-align: center; animation: drift 8s ease-in-out infinite; will-change: transform; }
@keyframes drift { 0%,100% { margin-top: 0; } 50% { margin-top: -10px; } }
.lantern-orb {
  --work: 0; display: block; width: 26px; height: 26px; margin: 0 auto; border-radius: 50%;
  background: radial-gradient(circle at 50% 38%, #fff, #9aa3b7);
  box-shadow: 0 0 12px 2px rgba(154,163,183,.5); transition: all .8s ease;
}
.lantern-name { display: block; margin-top: .35rem; font-size: .72rem; color: #c6d0ee; max-width: 90px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lantern.st-progress .lantern-orb {
  width: calc(26px + var(--work) * 14px); height: calc(26px + var(--work) * 14px);
  background: radial-gradient(circle at 50% 38%, #fff, #e9c46a);
  box-shadow: 0 0 calc(14px + var(--work) * 22px) calc(2px + var(--work) * 6px) rgba(233,196,106,.55);
}
.lantern.st-finished .lantern-orb {
  background: radial-gradient(circle at 50% 38%, #ffffff, #2e9e5b);
  box-shadow: 0 0 22px 6px rgba(46,158,91,.6);
}
.lantern.rising { animation: rise 2.4s ease-out forwards; }
@keyframes rise { to { margin-top: -36px; } }

.bcast-foot { display: flex; gap: 1.8rem; flex-wrap: wrap; justify-content: center; padding: .6rem 0 .2rem; border-top: 1px solid rgba(255,255,255,.08); }
.tally { display: flex; align-items: center; gap: .45rem; font-size: 1rem; color: #cdd8f5; }
.tally .tnum { font-family: var(--display); font-weight: 700; font-size: 1.25rem; color: #fff; }
.tally .light { box-shadow: none; }
.dot-ink { display: inline-block; width: 11px; height: 11px; border-radius: 50%; background: #7fe3e3; }
