
/* ══════════════════════════════════════════
   QUILMES TEC — ADMIN PANEL v2
   Paleta: oscuro neutro cálido, legibilidad máxima
   Acento teal conservado como identidad de marca
══════════════════════════════════════════ */
:root {
  --bg:   #1a1a1f;
  --bg2:  #222227;
  --bg3:  #2a2a30;
  --teal:     #36b5a4;
  --tg:       #4dd4c2;
  --teal-dim: rgba(54,181,164,.1);
  --verde:   #22c55e;
  --rojo:    #ef4444;
  --dorado:  #f59e0b;
  --violeta: #a78bfa;
  --white: #f0f0f2;
  --tx:    #c8c8d0;
  --txd:   #909098;
  --txx:   #606068;
  --border:       rgba(255,255,255,.08);
  --border-hover: rgba(255,255,255,.18);
  --border-focus: var(--teal);
  --fm: 'DM Mono', monospace;
  --fd: 'Outfit', system-ui, sans-serif;
  --sidebar: 240px;
  --nh: 56px;
  --main-max: 1200px;
  --main-px: 40px;
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0 }
html, body { height: 100%; overflow: hidden }
body {
  background: var(--bg); color: var(--white); font-family: var(--fd);
  font-size: 13px; display: flex; flex-direction: column;
  -webkit-font-smoothing: antialiased; line-height: 1.5;
}
::selection { background: var(--teal); color: #0f1f1d }
button { cursor: pointer; font-family: var(--fd) }
input, select, textarea { font-family: var(--fd); font-size: 13px }

/* ══ TOPBAR ══ */
.topbar {
  height: var(--nh); background: var(--bg2);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px 0 0; flex-shrink: 0; z-index: 50;
}
.topbar-left {
  display: flex; align-items: center; width: var(--sidebar); flex-shrink: 0;
  padding: 0 20px; border-right: 1px solid var(--border);
}
.topbar-logo { font-family: var(--fd); font-size: 15px; font-weight: 700; color: var(--white) }
.topbar-logo span { color: var(--teal) }
.topbar-badge {
  font-size: 9px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--txd); margin-left: 10px;
  padding: 3px 8px; border: 1px solid var(--border); border-radius: 4px;
}
.topbar-center { flex: 1; padding: 0 24px; display: flex; align-items: center }
.topbar-search {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 14px;
  color: var(--white); outline: none; width: 300px; transition: border-color .2s;
}
.topbar-search::placeholder { color: var(--txd) }
.topbar-search:focus { border-color: var(--border-focus) }
.topbar-right { display: flex; align-items: center; gap: 10px }
.tb-btn {
  background: none; border: 1px solid var(--border);
  border-radius: 8px; padding: 7px 14px;
  color: var(--tx); font-size: 12px; transition: all .2s;
}
.tb-btn:hover { border-color: var(--border-hover); color: var(--white) }
.tb-alert { position: relative }
.tb-alert-dot {
  position: absolute; top: -3px; right: -3px;
  width: 8px; height: 8px; background: var(--rojo); border-radius: 50%;
  border: 2px solid var(--bg2); display: none;
}
.tb-alert-dot.visible { display: block }

/* ══ LAYOUT ══ */
.app { display: flex; flex: 1; overflow: hidden }

/* ══ SIDEBAR ══ */
.sidebar {
  width: var(--sidebar); background: var(--bg2);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; flex-shrink: 0; overflow-y: auto;
}
.sidebar-section {
  padding: 18px 14px 6px; font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--txd); font-family: var(--fm);
}
.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px; border-radius: 7px; margin: 1px 8px; color: var(--tx);
  transition: all .15s; font-size: 13px; border: 1px solid transparent;
  background: none; width: calc(100% - 16px); text-align: left;
}
.nav-item:hover { background: var(--bg3); color: var(--white); border-color: var(--border) }
.nav-item.active { background: var(--teal-dim); color: var(--teal); border-color: rgba(54,181,164,.25) }
.nav-item .ni-icon { font-size: 15px; width: 18px; text-align: center; flex-shrink: 0 }
.nav-item .ni-label { flex: 1; font-weight: 500 }
.nav-item .ni-badge {
  font-size: 10px; background: var(--rojo); color: #fff;
  border-radius: 10px; padding: 1px 6px; min-width: 18px; text-align: center;
}
.nav-item .ni-badge.green { background: var(--verde) }
.nav-item .ni-badge.amber { background: var(--dorado); color: #1a1a1f }
.nav-item .ni-badge.hidden { display: none }

.sidebar-taller {
  margin: 3px 8px; background: var(--bg3); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden; cursor: pointer; transition: border-color .15s;
}
.sidebar-taller:hover { border-color: var(--border-hover) }
.st-header { padding: 10px 12px; display: flex; align-items: center; gap: 8px }
.st-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--verde); flex-shrink: 0 }
.st-dot.amber { background: var(--dorado) }
.st-dot.red   { background: var(--rojo) }
.st-name { font-size: 12px; color: var(--white); flex: 1; line-height: 1.3; font-weight: 500 }
.st-date { font-size: 10px; color: var(--txd); margin-top: 1px }
.st-cupo { font-size: 11px; color: var(--tx); font-weight: 600 }
.sidebar-footer { margin-top: auto; padding: 14px 12px; border-top: 1px solid var(--border) }
.sf-user { display: flex; align-items: center; gap: 10px }
.sf-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--teal-dim); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--teal); flex-shrink: 0;
}
.sf-name { font-size: 12px; color: var(--white); font-weight: 500 }
.sf-role { font-size: 10px; color: var(--txd); margin-top: 1px }

/* ══ MAIN ══ */
.main { flex: 1; overflow-y: auto; overflow-x: hidden; background: var(--bg) }
.view { display: none; padding: 28px var(--main-px); min-height: 100% }
.view.active { display: block }
.view-inner { max-width: var(--main-max); margin: 0 auto }

/* ══ PAGE HEADER ══ */
.page-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 24px; gap: 16px;
}
.ph-title { font-family: var(--fd); font-size: 22px; font-weight: 700; color: var(--white); line-height: 1.1 }
.ph-title em { color: var(--teal); font-style: normal }
.ph-sub { font-size: 12px; color: var(--txd); margin-top: 5px; font-family: var(--fm) }
.ph-actions { display: flex; gap: 8px; flex-shrink: 0; flex-wrap: wrap }

/* ══ BUTTONS ══ */
.btn {
  border-radius: 7px; padding: 8px 16px; font-size: 12px; font-weight: 500;
  border: 1px solid var(--border); transition: all .15s; color: var(--tx);
  background: var(--bg3); cursor: pointer; font-family: var(--fd); white-space: nowrap;
}
.btn:hover { border-color: var(--border-hover); color: var(--white); background: var(--bg3) }
.btn.primary { background: var(--teal); border-color: var(--teal); color: #0f1f1d; font-weight: 600 }
.btn.primary:hover { background: var(--tg); border-color: var(--tg) }
.btn.danger { background: rgba(239,68,68,.08); border-color: rgba(239,68,68,.3); color: var(--rojo) }
.btn.danger:hover { background: rgba(239,68,68,.15); border-color: var(--rojo) }
.btn.amber { background: rgba(245,158,11,.08); border-color: rgba(245,158,11,.3); color: var(--dorado) }
.btn.amber:hover { background: rgba(245,158,11,.15); border-color: var(--dorado) }
.btn.green { background: rgba(34,197,94,.08); border-color: rgba(34,197,94,.3); color: var(--verde) }
.btn.green:hover { background: rgba(34,197,94,.15); border-color: var(--verde) }
.btn.icon { padding: 8px 12px }
.btn:disabled { opacity: .5; cursor: not-allowed }

/* ══ STATS GRID ══ */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 20px }
.stat-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; padding: 18px; transition: border-color .15s;
}
.stat-card:hover { border-color: var(--border-hover) }
.sc-label { font-size: 11px; color: var(--txd); margin-bottom: 10px; font-weight: 500 }
.sc-value { font-family: var(--fd); font-size: 30px; font-weight: 700; color: var(--white); line-height: 1 }
.sc-value.teal   { color: var(--teal) }
.sc-value.verde  { color: var(--verde) }
.sc-value.rojo   { color: var(--rojo) }
.sc-value.dorado { color: var(--dorado) }
.sc-sub { font-size: 11px; color: var(--txd); margin-top: 6px }
.sc-bar { height: 3px; background: var(--bg3); border-radius: 2px; margin-top: 14px; overflow: hidden }
.sc-bar-fill { height: 100%; border-radius: 2px; background: var(--teal); transition: width .6s ease }

/* ══ TABLE ══ */
.table-wrap {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
}
.table-wrap table { min-width: 700px }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch }
.table-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-bottom: 1px solid var(--border);
}
.th-title { font-family: var(--fd); font-size: 14px; font-weight: 600; color: var(--white) }
.th-actions { display: flex; gap: 8px; align-items: center }
.table-filters {
  display: flex; gap: 8px; align-items: center;
  padding: 10px 20px; border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,.15); flex-wrap: wrap;
}
.filter-btn {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 6px; padding: 5px 12px; font-size: 12px; color: var(--tx);
  font-weight: 500; transition: all .15s; cursor: pointer; font-family: var(--fd);
}
.filter-btn:hover { border-color: var(--border-hover); color: var(--white) }
.filter-btn.active { border-color: var(--teal); color: var(--teal); background: var(--teal-dim) }
.filter-search {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 6px; padding: 6px 12px; color: var(--white); outline: none;
  font-size: 12px; width: 220px; transition: border-color .15s;
}
.filter-search::placeholder { color: var(--txd) }
.filter-search:focus { border-color: var(--border-focus) }
table { width: 100%; border-collapse: collapse }
thead th {
  padding: 10px 16px; text-align: left; font-size: 11px; font-weight: 600;
  color: var(--txd); letter-spacing: .04em; border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,.1); white-space: nowrap; font-family: var(--fd);
}
thead th:first-child { padding-left: 20px }
tbody tr { border-bottom: 1px solid var(--border); transition: background .1s }
tbody tr:last-child { border-bottom: none }
tbody tr:hover { background: var(--bg3) }
tbody td { padding: 11px 16px; font-size: 13px; color: var(--tx); vertical-align: middle }
tbody td:first-child { padding-left: 20px }
.td-name { font-weight: 600; color: var(--white) }
.td-mono { font-family: var(--fm); font-size: 12px; color: var(--tx) }
.td-actions { display: flex; gap: 5px; align-items: center }
.td-btn {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 5px; padding: 4px 10px; font-size: 11px; color: var(--tx);
  font-weight: 500; transition: all .15s; cursor: pointer; font-family: var(--fd);
}
.td-btn:hover { border-color: var(--border-hover); color: var(--white) }
.td-btn.red:hover { background: rgba(239,68,68,.1); border-color: var(--rojo); color: var(--rojo) }
.td-btn.green:hover { background: rgba(34,197,94,.1); border-color: var(--verde); color: var(--verde) }
.table-footer {
  padding: 12px 20px; border-top: 1px solid var(--border);
  font-size: 10px; color: var(--txx); display: flex; justify-content: space-between; align-items: center;
}

/* ══ BADGES ══ */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; padding: 3px 10px; border-radius: 20px;
  font-weight: 600; white-space: nowrap; font-family: var(--fd);
}
.badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor }
.badge.open    { background: rgba(34,197,94,.12);  color: #4ade80; border: 1px solid rgba(34,197,94,.25) }
.badge.full    { background: rgba(245,158,11,.12); color: #fbbf24; border: 1px solid rgba(245,158,11,.25) }
.badge.closed  { background: rgba(239,68,68,.12);  color: #f87171; border: 1px solid rgba(239,68,68,.25) }
.badge.pending { background: rgba(167,139,250,.12);color: var(--violeta); border: 1px solid rgba(167,139,250,.25) }
.badge.present { background: rgba(34,197,94,.12);  color: #4ade80; border: 1px solid rgba(34,197,94,.25) }
.badge.absent  { background: rgba(239,68,68,.12);  color: #f87171; border: 1px solid rgba(239,68,68,.25) }
.badge.nomark  { background: rgba(255,255,255,.05); color: var(--txd); border: 1px solid var(--border) }

/* ══ TALLER CARD ══ */
.taller-cards { display: grid; grid-template-columns: repeat(auto-fill,minmax(320px,1fr)); gap: 14px; margin-bottom: 20px }
.tc {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; transition: all .2s;
}
.tc:hover { border-color: var(--border-hover); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,.3) }
.tc-top { padding: 18px 18px 14px; position: relative }
.tc-status { position: absolute; top: 14px; right: 14px }
.tc-icon-wrap { font-size: 26px; margin-bottom: 10px }
.tc-name { font-family: var(--fd); font-size: 15px; font-weight: 700; color: var(--white); line-height: 1.25; margin-bottom: 6px }
.tc-desc { font-size: 12px; color: var(--tx); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 4px }
.tc-date { font-size: 12px; color: var(--tx); display: flex; align-items: center; gap: 5px; margin-bottom: 2px }
.tc-bottom { padding: 12px 18px; border-top: 1px solid var(--border); background: rgba(0,0,0,.15) }
.tc-progress-label { display: flex; justify-content: space-between; margin-bottom: 6px }
.tpl-text { font-size: 11px; color: var(--txd) }
.tpl-num  { font-size: 12px; color: var(--white); font-weight: 600 }
.tc-progress { height: 4px; background: var(--bg3); border-radius: 2px; overflow: hidden }
.tc-progress-fill { height: 100%; border-radius: 2px; transition: width .6s ease }
.tc-actions { display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap }
.tc-actions .btn { flex: 1; text-align: center; font-size: 11px; padding: 7px 8px }

/* ══ ALERT BANNER ══ */
.alert-banner {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 9px;
  margin-bottom: 16px; font-size: 13px; font-weight: 500;
}
.alert-banner.warning { background: rgba(245,158,11,.1);  border: 1px solid rgba(245,158,11,.3); color: #fbbf24 }
.alert-banner.danger  { background: rgba(239,68,68,.1);   border: 1px solid rgba(239,68,68,.3);  color: #f87171 }
.alert-banner.info    { background: rgba(54,181,164,.08); border: 1px solid rgba(54,181,164,.25);color: var(--teal) }
.alert-banner.success { background: rgba(34,197,94,.08);  border: 1px solid rgba(34,197,94,.25); color: #4ade80 }
.ab-icon  { font-size: 16px; flex-shrink: 0 }
.ab-text  { flex: 1; color: inherit }
.ab-close { background: none; border: none; color: inherit; opacity: .6; font-size: 18px; padding: 0; transition: opacity .2s; cursor: pointer }
.ab-close:hover { opacity: 1 }

/* ══ ASISTENCIA ══ */
.asistencia-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-bottom: 18px }
.asist-stat {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; padding: 20px; text-align: center;
}
.as-big { font-family: var(--fd); font-size: 40px; font-weight: 700; line-height: 1 }
.as-label { font-size: 11px; color: var(--txd); margin-top: 6px; text-transform: uppercase; letter-spacing: .08em; font-weight: 500 }
.asist-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; border-bottom: 1px solid var(--border);
}
.asist-row:last-child { border-bottom: none }
.asist-num  { font-size: 11px; color: var(--txd); width: 24px; text-align: center; flex-shrink: 0; font-family: var(--fm) }
.asist-name { flex: 1; font-size: 13px; color: var(--white); font-weight: 500 }
.asist-toggle { display: flex; gap: 4px }
.at-btn {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 6px; padding: 5px 12px; font-size: 11px; color: var(--tx);
  font-weight: 500; transition: all .15s; cursor: pointer; font-family: var(--fd);
}
.at-btn.presente.active { background: rgba(34,197,94,.15);  border-color: var(--verde); color: #4ade80 }
.at-btn.ausente.active  { background: rgba(239,68,68,.15);  border-color: var(--rojo);  color: #f87171 }

.asist-taller-select {
  margin-bottom: 16px; display: flex; align-items: center; gap: 12px;
}
.asist-taller-select label { font-size: 12px; color: var(--txd); font-weight: 500; white-space: nowrap }
.asist-taller-select select {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 7px; padding: 8px 12px; color: var(--white);
  outline: none; min-width: 240px; cursor: pointer;
}
.asist-taller-select select option { background: var(--bg2) }

/* ══ MODAL ══ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.7); backdrop-filter: blur(6px);
  z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex }
.modal {
  background: var(--bg2); border: 1px solid var(--border-hover);
  border-radius: 14px; width: 100%; max-width: 560px;
  overflow: hidden; animation: modalIn .2s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,.5); max-height: 90vh; overflow-y: auto;
}
@keyframes modalIn { from{opacity:0;transform:scale(.97) translateY(8px)} to{opacity:1;transform:none} }
@keyframes modalShake { 0%,100%{transform:translateX(0)} 20%{transform:translateX(-6px)} 40%{transform:translateX(6px)} 60%{transform:translateX(-4px)} 80%{transform:translateX(4px)} }
.modal-header {
  padding: 18px 22px 16px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.mh-title { font-family: var(--fd); font-size: 16px; font-weight: 700; color: var(--white) }
.mh-close { background: none; border: none; color: var(--txd); font-size: 20px; padding: 0; transition: color .15s; line-height: 1; cursor: pointer }
.mh-close:hover { color: var(--white) }
.modal-body { padding: 20px 22px }
.form-group { margin-bottom: 14px }
.form-label {
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
  color: var(--tx); margin-bottom: 6px; display: block; font-family: var(--fd);
}
.form-input {
  width: 100%; background: var(--bg3); border: 1px solid var(--border);
  border-radius: 7px; padding: 9px 13px; color: var(--white); outline: none; transition: border-color .15s;
}
.form-input:focus { border-color: var(--border-focus) }
.form-input::placeholder { color: var(--txd) }
.form-select {
  width: 100%; background: var(--bg3); border: 1px solid var(--border);
  border-radius: 7px; padding: 9px 13px; color: var(--white); outline: none; cursor: pointer;
}
.form-select option { background: var(--bg2) }
.form-textarea {
  width: 100%; background: var(--bg3); border: 1px solid var(--border);
  border-radius: 7px; padding: 9px 13px; color: var(--white); outline: none;
  resize: vertical; min-height: 90px; font-family: var(--fm); font-size: 12px; line-height: 1.6;
}
.form-textarea:focus { border-color: var(--border-focus) }
.form-textarea::placeholder { color: var(--txd) }
.modal-footer {
  padding: 14px 22px; border-top: 1px solid var(--border);
  display: flex; gap: 8px; justify-content: flex-end;
}

/* ══ COMUNICACION ══ */
.com-tpl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px }
.com-tpl {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 9px; padding: 14px; cursor: pointer;
  transition: all .15s; text-align: left;
}
.com-tpl:hover,.com-tpl.active { border-color: var(--teal); background: var(--teal-dim) }
.ct-icon { font-size: 20px; margin-bottom: 6px }
.ct-name { font-family: var(--fd); font-size: 13px; font-weight: 600; color: var(--white) }
.ct-desc { font-size: 11px; color: var(--txd); margin-top: 3px; line-height: 1.5 }

/* ══ MATERIAL ══ */
.material-list { display: flex; flex-direction: column; gap: 8px }
.material-item {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 9px; padding: 13px 16px; display: flex; align-items: center;
  gap: 14px; transition: border-color .15s;
}
.material-item:hover { border-color: var(--border-hover) }
.mi-icon  { font-size: 20px; flex-shrink: 0 }
.mi-info  { flex: 1; min-width: 0 }
.mi-name  { font-size: 13px; color: var(--white); font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap }
.mi-meta  { font-size: 11px; color: var(--txd); margin-top: 2px }
.mi-actions { display: flex; gap: 6px; flex-wrap: wrap; flex-shrink: 0 }

/* ══ MATERIAL FOLDERS ══ */
.mat-folders-grid {
  display: flex; flex-direction: column;
  gap: 10px; margin-bottom: 16px;
}
.mat-folder {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; transition: border-color .15s;
}
.mat-folder:hover { border-color: var(--border-hover) }
.mat-folder-header {
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  cursor: pointer; transition: background .1s; user-select: none;
}
.mat-folder-header:hover { background: var(--bg3) }
.mat-folder-icon { font-size: 22px; flex-shrink: 0 }
.mat-folder-info { flex: 1; min-width: 0 }
.mat-folder-name {
  font-size: 14px; font-weight: 600; color: var(--white);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mat-folder-meta { font-size: 11px; color: var(--txd); margin-top: 2px }
.mat-folder-count {
  font-size: 11px; font-weight: 600; color: var(--teal);
  background: var(--teal-dim); padding: 3px 10px; border-radius: 12px;
  flex-shrink: 0; font-family: var(--fm);
}
.mat-folder-count.empty { color: var(--txd); background: var(--bg3) }
.mat-folder-chevron {
  font-size: 14px; color: var(--txd); transition: transform .2s; flex-shrink: 0;
}
.mat-folder.open .mat-folder-chevron { transform: rotate(90deg) }
.mat-folder-body {
  display: none; border-top: 1px solid var(--border);
  padding: 12px 18px;
}
.mat-folder.open .mat-folder-body { display: block }
.mat-folder-empty {
  text-align: center; padding: 20px 12px; color: var(--txd); font-size: 12px;
}
.mat-folder-add {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px; margin-top: 8px; border: 1px dashed var(--border);
  border-radius: 8px; background: none; color: var(--txd);
  font-size: 12px; font-family: var(--fd); cursor: pointer;
  transition: all .15s; width: 100%;
}
.mat-folder-add:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-dim) }

/* ══ EMOJI PICKER ══ */
.emoji-picker {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.emoji-option {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--bg3); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer; transition: all .15s;
}
.emoji-option:hover { border-color: var(--border-hover); background: var(--bg); transform: scale(1.1) }
.emoji-option.selected { border-color: var(--teal); background: var(--teal-dim); transform: scale(1.1) }
.emoji-trigger {
  width: 42px; height: 42px; border-radius: 8px; flex-shrink: 0;
  background: var(--bg3); border: 1px solid var(--border);
  font-size: 22px; cursor: pointer; transition: all .15s;
  display: flex; align-items: center; justify-content: center;
}
.emoji-trigger:hover { border-color: var(--teal); background: var(--teal-dim) }

/* ══ FIX: links with emojis — prevent underline on emoji icons ══ */
a.btn { text-decoration: none }
.tc-actions a { text-decoration: none }

/* ══ PLANTEL / RESPONSABLE ══ */
.responsable-tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; color: var(--violeta); background: rgba(167,139,250,.1);
  border: 1px solid rgba(167,139,250,.2); border-radius: 12px;
  padding: 2px 8px; font-weight: 500; margin-right: 4px;
}

/* ══ MULTI-SELECT ══ */
.multi-select-wrap { position: relative }
.multi-select-trigger {
  width: 100%; background: var(--bg3); border: 1px solid var(--border);
  border-radius: 7px; padding: 9px 13px;
  color: var(--white); outline: none; cursor: pointer;
  font-family: var(--fd); font-size: 13px; text-align: left;
  transition: border-color .15s;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.multi-select-trigger:hover { border-color: var(--border-hover) }
.multi-select-trigger:focus { border-color: var(--teal) }
.multi-select-dropdown {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--bg2); border: 1px solid var(--border-hover);
  border-radius: 8px; margin-top: 4px; z-index: 10;
  max-height: 200px; overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.multi-select-option {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px; cursor: pointer; transition: background .1s;
  font-size: 13px; color: var(--tx);
}
.multi-select-option:hover { background: var(--bg3); color: var(--white) }
.multi-select-option input[type=checkbox] {
  width: 14px; height: 14px; accent-color: var(--teal); cursor: pointer; flex-shrink: 0;
}
.multi-select-option-name { flex: 1 }
.multi-select-option-role { font-size: 10px; color: var(--txd) }

/* ══ ACTIVITY FEED ══ */
.activity-feed { display: flex; flex-direction: column; gap: 0 }
.activity-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 16px; border-bottom: 1px solid var(--border); transition: background .1s;
}
.activity-item:last-child { border-bottom: none }
.activity-item:hover { background: var(--bg3) }
.activity-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.activity-icon.info    { background: var(--teal-dim); color: var(--teal) }
.activity-icon.warning { background: rgba(245,158,11,.1); color: var(--dorado) }
.activity-icon.success { background: rgba(34,197,94,.1); color: var(--verde) }
.activity-icon.danger  { background: rgba(239,68,68,.1); color: var(--rojo) }
.activity-content { flex: 1; min-width: 0 }
.activity-text { font-size: 13px; color: var(--tx); line-height: 1.5 }
.activity-text strong { color: var(--white); font-weight: 600 }
.activity-time { font-size: 10px; color: var(--txx); margin-top: 2px; font-family: var(--fm) }

/* ══ SECTION LABEL ══ */
.section-label {
  font-family: var(--fd); font-size: 13px; font-weight: 600; color: var(--txd);
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: .08em;
}
.section-label.small { font-size: 12px; margin-bottom: 10px }

/* ══ TOAST ══ */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 300; display: flex; flex-direction: column; gap: 8px }
.toast {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 9px; padding: 12px 16px; display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--white); font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,.5); animation: toastIn .25s ease;
  min-width: 280px; font-family: var(--fd);
}
.toast.success { border-color: rgba(34,197,94,.35);  background: rgba(34,197,94,.1) }
.toast.error   { border-color: rgba(239,68,68,.35);  background: rgba(239,68,68,.1) }
.toast.info    { border-color: rgba(54,181,164,.35); background: rgba(54,181,164,.08) }
.toast.warning { border-color: rgba(245,158,11,.35); background: rgba(245,158,11,.08) }
@keyframes toastIn  { from{opacity:0;transform:translateX(16px)} to{opacity:1;transform:none} }
@keyframes toastOut { to{opacity:0;transform:translateX(16px)} }

/* ══ EMPTY STATE ══ */
.empty-state { text-align: center; padding: 50px 20px }
.es-icon { font-size: 36px; margin-bottom: 12px; opacity: .35 }
.es-text { font-family: var(--fd); font-size: 15px; color: var(--tx); font-weight: 500 }
.es-sub  { font-size: 12px; color: var(--txd); margin-top: 6px }

/* ══ CHECKBOX ══ */
.check-wrap { display: flex; align-items: center; gap: 8px; cursor: pointer }
.check-wrap input[type=checkbox] { width: 15px; height: 15px; accent-color: var(--teal); cursor: pointer }
.check-label { font-size: 13px; color: var(--tx) }

/* ══ SCROLLBAR ══ */
::-webkit-scrollbar { width: 5px }
::-webkit-scrollbar-track { background: transparent }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.12); border-radius: 3px }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.22) }

/* ══ MISC ══ */
.divider { height: 1px; background: var(--border); margin: 20px 0 }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px }
.three-col { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px }
.info-row { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 13px }
.ir-label { color: var(--txd); width: 130px; flex-shrink: 0; font-weight: 500 }
.ir-value { color: var(--white); flex: 1 }
.ir-edit {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 5px; padding: 3px 10px; font-size: 11px; color: var(--tx);
  transition: all .15s; cursor: pointer;
}
.ir-edit:hover { border-color: var(--border-hover); color: var(--white) }

/* ══ NOTIFICATION PANEL ══ */
.notif-panel {
  position: fixed; top: var(--nh); right: 0; width: 380px;
  max-height: calc(100vh - var(--nh)); background: var(--bg2);
  border-left: 1px solid var(--border); border-bottom: 1px solid var(--border);
  border-bottom-left-radius: 12px; z-index: 100; overflow-y: auto;
  box-shadow: -4px 4px 24px rgba(0,0,0,.4); display: none;
}
.notif-panel.open { display: block; animation: notifSlide .2s ease }
@keyframes notifSlide { from{opacity:0;transform:translateX(16px)} to{opacity:1;transform:none} }
.notif-header {
  padding: 16px 18px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.notif-header-title { font-size: 14px; font-weight: 700; color: var(--white) }
.notif-empty { padding: 40px 20px; text-align: center; color: var(--txd); font-size: 13px }

/* ══ CALENDAR VIEW ══ */
.cal-month-label {
  font-family: var(--fd); font-size: 20px; font-weight: 700;
  color: var(--white); margin-bottom: 16px; text-transform: capitalize;
}
.cal-grid {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
}
.cal-header-row {
  display: grid; grid-template-columns: repeat(7, 1fr);
  border-bottom: 1px solid var(--border); background: rgba(0,0,0,.15);
}
.cal-header-cell {
  padding: 10px 8px; text-align: center;
  font-size: 11px; font-weight: 600; color: var(--txd);
  text-transform: uppercase; letter-spacing: .06em; font-family: var(--fd);
}
.cal-body {
  display: grid; grid-template-columns: repeat(7, 1fr);
}
.cal-day {
  min-height: 90px; padding: 6px 8px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background .1s; position: relative;
}
.cal-day:nth-child(7n) { border-right: none }
.cal-day:hover { background: var(--bg3) }
.cal-day.other-month { opacity: .3 }
.cal-day.today { background: rgba(54,181,164,.06) }
.cal-day.today .cal-day-num { color: var(--teal); font-weight: 700 }
.cal-day-num {
  font-size: 12px; font-weight: 500; color: var(--tx);
  margin-bottom: 4px; font-family: var(--fm);
}
.cal-event {
  display: block; padding: 3px 6px; margin-bottom: 3px;
  border-radius: 4px; font-size: 10px; font-weight: 600;
  color: var(--white); cursor: pointer; transition: opacity .15s;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  text-decoration: none; border: none; width: 100%; text-align: left;
  font-family: var(--fd);
}
.cal-event:hover { opacity: .8 }
.cal-event.open    { background: rgba(34,197,94,.25); color: #4ade80 }
.cal-event.pending { background: rgba(167,139,250,.2); color: var(--violeta) }
.cal-event.full    { background: rgba(245,158,11,.2); color: #fbbf24 }
.cal-event.closed  { background: rgba(239,68,68,.15); color: #f87171 }
.cal-event.archived { background: rgba(255,255,255,.05); color: var(--txd) }

.cal-upcoming {
  display: flex; flex-direction: column; gap: 8px;
}
.cal-upcoming-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 9px; padding: 14px 16px; transition: border-color .15s;
  cursor: pointer;
}
.cal-upcoming-item:hover { border-color: var(--border-hover) }
.cal-upcoming-date {
  text-align: center; min-width: 48px; flex-shrink: 0;
}
.cal-upcoming-date-day {
  font-size: 22px; font-weight: 700; color: var(--teal); line-height: 1;
  font-family: var(--fd);
}
.cal-upcoming-date-month {
  font-size: 10px; color: var(--txd); text-transform: uppercase;
  letter-spacing: .08em; margin-top: 2px; font-family: var(--fm);
}
.cal-upcoming-info { flex: 1; min-width: 0 }
.cal-upcoming-name {
  font-size: 13px; font-weight: 600; color: var(--white);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.cal-upcoming-meta { font-size: 11px; color: var(--txd); margin-top: 2px }
.cal-upcoming-badge { flex-shrink: 0 }

.cal-empty {
  text-align: center; padding: 24px; color: var(--txd); font-size: 13px;
}

/* ══ DATE INPUT FIX ══ */
input[type="date"] { color-scheme: dark }
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.7); cursor: pointer }

/* ══ FORMS NOT PUBLISHED WARNING ══ */
.form-warning-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 7px;
  background: rgba(245,158,11,.08); border: 1px solid rgba(245,158,11,.25);
  font-size: 11px; color: var(--dorado); margin-top: 8px;
}
.form-warning-bar a { color: var(--teal); text-decoration: underline }

/* ══ ARCHIVED SECTION ══ */
.archived-section { margin-top: 24px }
.archived-section .tc { opacity: 0.65; }
.archived-section .tc:hover { opacity: 0.85 }

/* ══ TALLER CARD — DASHBOARD compact ══ */
.tc-edit-overlay {
  position: absolute; top: 14px; left: 14px;
  opacity: 0; transition: opacity .15s;
}
.tc:hover .tc-edit-overlay { opacity: 1 }

/* ══ CONFIRMATION MESSAGE PREVIEW ══ */
.msg-preview-box {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 8px; padding: 14px; margin-top: 8px;
  font-size: 12px; color: var(--tx); line-height: 1.6;
  font-family: var(--fm); white-space: pre-wrap;
  max-height: 200px; overflow-y: auto;
}

/* ══ LOGIN SCREEN ══ */
.login-screen {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.login-card {
  background: var(--bg2); border: 1px solid var(--border-hover);
  border-radius: 16px; padding: 40px 36px 32px;
  width: 100%; max-width: 380px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  animation: modalIn .4s ease;
}
.login-logo { text-align: center; margin-bottom: 32px }
.login-logo-text {
  font-family: var(--fd); font-size: 22px; font-weight: 700; color: var(--white);
}
.login-logo-text span { color: var(--teal) }
.login-logo-sub {
  font-size: 11px; color: var(--txd); margin-top: 6px;
  text-transform: uppercase; letter-spacing: .12em; font-family: var(--fm);
}
.login-form { display: flex; flex-direction: column; gap: 16px }
.login-field { display: flex; flex-direction: column; gap: 6px }
.login-label {
  font-size: 11px; font-weight: 600; color: var(--tx);
  letter-spacing: .04em; font-family: var(--fd);
}
.login-input {
  width: 100%; background: var(--bg3); border: 1px solid var(--border);
  border-radius: 8px; padding: 11px 14px;
  color: var(--white); outline: none; font-size: 14px;
  transition: border-color .15s; font-family: var(--fd);
}
.login-input:focus { border-color: var(--teal) }
.login-input::placeholder { color: var(--txd) }
.login-error {
  font-size: 12px; color: var(--rojo); text-align: center;
  padding: 8px; background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.25); border-radius: 7px;
}
.login-eye {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; font-size: 16px;
  padding: 4px 6px; border-radius: 4px; opacity: .6; transition: opacity .15s;
  filter: grayscale(1) brightness(2);
}
.login-eye:hover { opacity: 1 }
input::-ms-reveal { display: none !important }
.login-btn {
  width: 100%; background: var(--teal); border: none;
  border-radius: 8px; padding: 12px;
  color: #0f1f1d; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: background .15s;
  font-family: var(--fd); margin-top: 4px;
}
.login-btn:hover { background: var(--tg) }
.login-btn:disabled { opacity: .6; cursor: not-allowed }
.login-footer {
  text-align: center; margin-top: 24px;
  font-size: 10px; color: var(--txx);
  font-family: var(--fm); letter-spacing: .06em;
}
@keyframes loginShake { 0%,100%{transform:translateX(0)} 15%{transform:translateX(-10px)} 30%{transform:translateX(10px)} 45%{transform:translateX(-8px)} 60%{transform:translateX(8px)} 75%{transform:translateX(-4px)} 90%{transform:translateX(4px)} }

/* ══ LOGIN LOGO IMAGE ══ */
.login-logo-img {
  width: 90px; height: 90px; border-radius: 50%;
  margin: 0 auto 12px; display: block;
  border: 2px solid var(--border);
}

/* ══ TOPBAR LOGO IMAGE ══ */
.topbar-logo-img {
  height: 22px; width: auto; display: block;
  filter: brightness(1.1);
}

/* ══ LOADING SCREEN ══ */
.loading-screen {
  position: fixed; inset: 0; z-index: 900;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 20px;
}
.loading-content { text-align: center }
.loading-logo-img {
  width: 72px; height: 72px; border-radius: 50%;
  margin: 0 auto 16px; display: block;
  animation: loadingPulse 1.5s ease infinite;
}
@keyframes loadingPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.7;transform:scale(.96)} }
.loading-text {
  font-family: var(--fd); font-size: 13px; color: var(--txd);
  margin-bottom: 16px;
}
.loading-bar {
  width: 200px; height: 3px; background: var(--bg3);
  border-radius: 2px; margin: 0 auto; overflow: hidden;
}
.loading-bar-fill {
  height: 100%; width: 0%; background: var(--teal);
  border-radius: 2px; transition: width .3s ease;
  animation: loadingProgress 2.5s ease-in-out infinite;
}
@keyframes loadingProgress { 0%{width:0%} 50%{width:70%} 100%{width:100%} }

/* ══ LOGOUT BUTTON ══ */
.sf-logout {
  background: none; border: 1px solid var(--border);
  border-radius: 6px; padding: 4px 8px;
  color: var(--txd); font-size: 14px; cursor: pointer;
  transition: all .15s; line-height: 1;
}
.sf-logout:hover { border-color: var(--rojo); color: var(--rojo); background: rgba(239,68,68,.08) }

/* ══ AUTO REFRESH INDICATOR ══ */
.auto-refresh-indicator {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; color: var(--txd); font-family: var(--fm);
}
.auto-refresh-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--verde); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ══ MOBILE MENU BUTTON ══ */
.mobile-menu-btn { display: none }

/* ══ MOBILE BOTTOM NAV ══ */
.mobile-bottom-nav {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--bg2); border-top: 1px solid var(--border);
  z-index: 60; padding: 4px 0;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mbn-item {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 2px; padding: 6px 4px; background: none; border: none;
  color: var(--txd); font-size: 9px; font-family: var(--fd);
  cursor: pointer; transition: color .15s;
}
.mbn-item.active { color: var(--teal) }
.mbn-item:active { color: var(--white) }
.mbn-icon { font-size: 18px; line-height: 1 }
.mbn-label { font-weight: 500; letter-spacing: .02em }

/* ══ MOBILE MORE MENU ══ */
.mobile-more-menu {
  display: none; position: fixed; inset: 0; z-index: 250;
}
.mobile-more-menu.open { display: flex; flex-direction: column; justify-content: flex-end }
.mmm-backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
}
.mmm-content {
  position: relative; z-index: 1;
  background: var(--bg2); border-top: 1px solid var(--border);
  border-radius: 16px 16px 0 0; padding: 16px 12px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom, 0));
  animation: mmmSlide .2s ease;
}
@keyframes mmmSlide { from{transform:translateY(100%)} to{transform:translateY(0)} }
.mmm-item {
  display: block; width: 100%; padding: 14px 16px;
  background: none; border: none; border-radius: 8px;
  color: var(--white); font-size: 14px; font-family: var(--fd);
  text-align: left; cursor: pointer; transition: background .1s;
}
.mmm-item:active { background: var(--bg3) }
.mmm-logout { color: var(--rojo) }
.mmm-divider { height: 1px; background: var(--border); margin: 8px 0 }

/* ══ MOBILE SIDEBAR OVERLAY ══ */
.sidebar.mobile-open {
  display: flex !important;
  position: fixed; top: var(--nh); left: 0; bottom: 0;
  z-index: 150; width: 280px;
  box-shadow: 4px 0 24px rgba(0,0,0,.5);
  animation: sidebarSlide .2s ease;
}
@keyframes sidebarSlide { from{transform:translateX(-100%)} to{transform:translateX(0)} }
.sidebar-backdrop {
  display: none; position: fixed; inset: 0; top: var(--nh);
  background: rgba(0,0,0,.4); z-index: 140;
}
.sidebar-backdrop.open { display: block }

/* ══ RESPONSIVE ══ */
@media(max-width:1400px) { :root { --main-px: 32px } }
@media(max-width:1100px) {
  :root { --main-px: 24px }
  .stats-grid { grid-template-columns: 1fr 1fr }
  .asistencia-grid { grid-template-columns: 1fr 1fr 1fr }
}
@media(max-width:900px) {
  :root { --main-px: 20px }
  .sidebar { display: none }
  .topbar-left { width: auto; border-right: none; padding: 0 12px }
  .topbar-center { display: none }
  .topbar-logo-img { height: 18px }
  .mobile-menu-btn { display: flex }
  .mobile-bottom-nav { display: flex }
  .page-header { flex-direction: column; gap: 12px }
  .ph-title { font-size: 18px }
  .ph-actions { width: 100%; overflow-x: auto; flex-wrap: nowrap; gap: 6px; padding-bottom: 4px }
  .ph-actions .btn { font-size: 11px; padding: 7px 10px; flex-shrink: 0 }
  .com-tpl-grid { grid-template-columns: 1fr }
  .notif-panel { width: 100%; border-left: none; border-bottom-left-radius: 0 }
  .main { padding-bottom: 64px }
  #dashboard-bottom-grid { grid-template-columns: 1fr !important }
  .table-wrap { border-radius: 8px }
  table { font-size: 12px }
  thead th { padding: 8px 10px; font-size: 10px }
  tbody td { padding: 8px 10px; font-size: 12px }
  .td-actions { gap: 3px }
  .td-btn { padding: 3px 7px; font-size: 10px }
  .modal { max-width: 95vw; max-height: 85vh }
  .modal-body { padding: 16px }
  .toast-container { bottom: 72px; right: 12px; left: 12px }
  .toast { min-width: auto; font-size: 12px }
  .tc-actions .btn { font-size: 10px; padding: 6px 6px }
}
@media(max-width:600px) {
  :root { --main-px: 14px }
  .stats-grid { grid-template-columns: 1fr 1fr }
  .stat-card { padding: 14px }
  .sc-value { font-size: 24px }
  .asistencia-grid { grid-template-columns: 1fr 1fr 1fr }
  .as-big { font-size: 28px }
  .two-col { grid-template-columns: 1fr }
  .taller-cards { grid-template-columns: 1fr }
  .filter-search { width: 100% }
  .mi-actions { flex-direction: column }
  .cal-day { min-height: 56px; padding: 3px }
  .cal-day-num { font-size: 10px }
  .cal-event { font-size: 8px; padding: 2px 3px }
  .cal-header-cell { font-size: 9px; padding: 6px 2px }
  .cal-upcoming-item { padding: 10px 12px; gap: 10px }
  .cal-upcoming-date-day { font-size: 18px }
  .view { padding: 16px var(--main-px) }
  .topbar-badge { display: none }
}
@media(max-width:380px) {
  .stats-grid { grid-template-columns: 1fr }
  .asistencia-grid { grid-template-columns: 1fr }
  .ph-title { font-size: 16px }
}
