/* =========================
   Cybervision CRM – Clean CSS
   ========================= */

/* Theme */
:root {
  --bg: #0b1020;
  --panel: #0d1428;
  --border: #1f2a44;
  --text: #e6eaf6;
  --muted: #9aaccc;
  --accent: #5da2ff;
  --accent-2: #22d3ee;
  --danger: #ef4444;
  --ok: #22c55e;
  --warn: #eab308;
  --chip: #0f1a34;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #070b16, #0b1020 120%);
}

a { color: var(--accent); text-decoration: none; }

/* Layout */
.layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}

.sidebar {
  background: linear-gradient(180deg, #0a1022, #0b1330);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.brand {
  font-weight: 800;
  font-size: 18px;
  padding: 18px;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.3px;
}

.menu { display: flex; flex-direction: column; padding: 12px; }
.menu a {
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--text);
  white-space: nowrap;
}
.menu a:hover { background: #0c1630; }

.sidebar-footer {
  margin-top: auto;
  padding: 14px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}
.sidebar-footer .link { color: #cbd5e1; }

.main { display: flex; flex-direction: column; }

/* Topbar & Search */
.topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: #0a1122;
  position: sticky;
  top: 0;
  z-index: 5;
}

.search {
  display: flex;
  gap: 10px;
  flex: 1;
  max-width: 980px;
  margin: 0 auto;
}
.search input {
  flex: 1;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #0c152a;
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 6px 18px rgba(0,0,0,0.25);
}
.search input::placeholder { color: #9fb4df; }
.search button {
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

/* Containers & Cards */
.container { max-width: 1320px; margin: 28px auto; padding: 0 22px; }
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
}
.grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* Stats */
.stats .stat { font-size: 38px; font-weight: 900; }
.stats .label { color: var(--muted); }

/* Header actions & buttons */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 12px;
  flex-wrap: wrap;
}
.actions { display: flex; gap: 10px; flex-wrap: wrap; }

.btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 800;
  white-space: nowrap;
}
.btn:hover { opacity: 0.92; }
.inline { display: inline-flex; gap: 8px; align-items: center; }

/* Forms */
.form label { display: block; margin-top: 12px; color: var(--muted); }
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #0d1730;
  color: var(--text);
  line-height: 1.4;
}
.form button { margin-top: 14px; }

/* Tables */
.table {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.table .row {
  display: grid;
  gap: 14px; /* space between columns */
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  background: var(--panel);
}
.table .row.head { background: #0a1122; font-weight: 800; }
.table .row:last-child { border-bottom: none; }
.table .row > div { min-width: 0; word-break: break-word; white-space: normal; line-height: 1.4; }

/* Column presets (use e.g. <div class="table cols-5">) */
.table.cols-2 .row { grid-template-columns: repeat(2, 1fr); }
.table.cols-4 .row { grid-template-columns: 2fr 2fr 1fr 1fr; }
.table.cols-5 .row { grid-template-columns: 2fr 1.7fr 1fr 2fr 1fr; }
.table.cols-6 .row { grid-template-columns: 2fr 1.5fr 1.5fr 0.8fr 0.9fr 1fr; }
.table.cols-7 .row { grid-template-columns: 2fr 1.5fr 1.2fr 0.8fr 0.9fr 1fr 1fr; }

/* Badges / Priorities */
.badge {
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid var(--border);
  background: var(--chip);
  text-transform: capitalize;
}
.prio-low { background: #0d2a18; border-color: #1e4024; color: #9ae6b4; }
.prio-normal { background: #0b223a; border-color: #1d3350; color: #8ecbff; }
.prio-high { background: #3a260b; border-color: #5a3f16; color: #ffd49e; }
.prio-critical { background: #3a0b0b; border-color: #5a1616; color: #ffb4b4; }

/* Chips (calendar tasks) */
.chip {
  font-size: 12px;
  padding: 4px 6px;
  border-radius: 8px;
  display: inline-block;
  border: 1px solid var(--border);
  background: #0b162e;
  margin-bottom: 4px;
}

/* Accordion (client notes panel) */
.notes-panel { background: #0e1933; border-top: 1px solid var(--border); padding: 14px 22px; }
.note-item { padding: 10px 0; border-bottom: 1px dashed var(--border); }
.note-item:last-child { border-bottom: none; }

/* Pure-CSS clamp (two lines) */
.clamp-2 {
  line-height: 1.4;
  max-height: calc(1.4em * 2);
  overflow: hidden;
}

/* Calendar */
.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px 0 18px;
}
.calendar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.day {
  border: 1px solid var(--border);
  border-radius: 12px;
  min-height: 120px;
  padding: 8px;
  background: #0b162e;
}
.day.empty { background: transparent; border: none; }
.day .date { font-size: 12px; color: var(--muted); margin-bottom: 6px; }

/* Alerts / Footer */
.alert { padding: 10px; border-radius: 10px; }
.alert-danger { background: #3f1e22; border: 1px solid #7f1d1d; color: #fecaca; }

.auth { display: flex; justify-content: center; padding: 40px; }
.auth-card { max-width: 460px; width: 100%; }

.footer {
  text-align: center;
  color: var(--muted);
  padding: 22px;
  border-top: 1px solid var(--border);
  margin-top: 22px;
}

/* Tabs */
.tabs { display: flex; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.tab {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #0c152a;
  color: #9fb4df;
}
.tab.active { background: var(--accent-2); color: #002e3a; border-color: #1b8ea5; }

/* Responsive */
@media (max-width: 980px) {
  .layout { grid-template-columns: 1fr; }
  .sidebar { position: sticky; top: 0; z-index: 6; }
  .menu { flex-direction: row; overflow: auto; }
  .brand { display: none; }
  .table .row { grid-template-columns: repeat(2, 1fr) !important; }
  .search { max-width: none; }
}

/* Task panel polish */
.task-panel{
  margin: -1px 0 10px 0;            /* εφάπτεται στη γραμμή από πάνω */
  border-left: 3px solid var(--accent);
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  background: #0e1933;
}
.tp-section{ font-weight:700; color:#5da2ff; margin-bottom:6px; }
.tp-body{ white-space:pre-wrap; color:#cbd5e1; }
.tp-note-title{ font-weight:600; color:#a7c4ff; }
.tp-note-body{ white-space:pre-wrap; color:#9fb4df; }
.tp-note-meta{ font-size:12px; color:#64748b; margin-top:4px; }
.tp-empty{ color:#94a3b8; margin:8px 0 0; }
.tp-actions{ display:flex; justify-content:flex-end; margin-top:10px; }


/* Task panel styling */
.task-panel{
  margin: -1px 0 10px 0;
  border-left: 3px solid var(--accent);
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  background: #0e1933;
}
.tp-section{ font-weight:700; color:#5da2ff; margin-bottom:6px; }
.tp-actions{ display:flex; justify-content:flex-end; margin-top:10px; }

.day.dragover { outline: 2px dashed var(--accent); }


/* ===== Wide Calendar Layout ===== */
.wide-calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(180px, 1fr));
  gap: 14px;
  width: 100%;
  max-width: 95vw;
  margin: 0 auto 40px auto;
}

.wide-calendar .day {
  background: #0b162e;
  border: 1px solid var(--border);
  border-radius: 14px;
  min-height: 180px;
  padding: 10px;
  transition: 0.2s ease;
}

.wide-calendar .day:hover {
  background: #0c1b38;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.wide-calendar .date {
  font-size: 13px;
  font-weight: 600;
  color: #9fb4df;
  margin-bottom: 8px;
}

.wide-calendar .chip {
  display: block;
  margin-bottom: 6px;
  background: #0f2040;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 6px 8px;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text);
  cursor: grab;
}

.wide-calendar .chip:hover {
  background: var(--accent);
  color: #fff;
}

/* Responsive tweak: fewer columns on small screens */
@media (max-width: 1100px) {
  .wide-calendar { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 800px) {
  .wide-calendar { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 500px) {
  .wide-calendar { grid-template-columns: repeat(2, 1fr); }
}

.notes-panel {
  background: #0e1933;
  border-top: 1px solid var(--border);
  padding: 14px 22px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.note-item {
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
}
.note-item:last-child { border-bottom: none; }




/* === CyberVision CRM – Monochrome Refined Theme === */
/* palette: #212121 (main bg) | #303030 (panel) | #414141 (border/hover) | #fff (text/buttons) */

:root {
  --bg: #212121;
  --panel: #303030;
  --border: #414141;
  --text: #ffffff;
  --muted: #cccccc;
  --accent: #ffffff;
  --accent-2: #f5f5f5;
  --danger: #ffffff;
  --ok: #ffffff;
  --warn: #dddddd;
  --chip: #303030;
}

/* === Layout === */
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, "Segoe UI", Arial, sans-serif;
  margin: 0;
}
.sidebar {
  background: #212121;
  border-right: 1px solid var(--border);
}
.brand {
  color: var(--text);
  font-weight: 700;
  padding: 18px;
  border-bottom: 1px solid var(--border);
}
.menu a {
  color: var(--text);
  padding: 12px 14px;
  border-radius: 10px;
}
.menu a:hover {
  background: #414141;
}

/* === Topbar & Search === */
.topbar {
  background: #212121;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
}
.search input {
  background: #303030;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 10px 14px;
}
.search input::placeholder { color: #bfbfbf; }
.search button {
  background: #fff;
  color: #000;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
}

/* === Buttons === */
.btn {
  background: #fff;
  color: #000;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  transition: 0.2s ease;
}
.btn:hover {
  background: #eaeaea;
}
.btn-secondary {
  background: #303030;
  color: #fff;
  border: 1px solid var(--border);
}
.btn-ghost {
  background: transparent;
  border: 1px dashed var(--border);
  color: #fff;
}

/* === Cards / Containers === */
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.container { max-width: 1320px; margin: 24px auto; padding: 0 22px; }

/* === Tables === */
.table {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.table .row {
  display: grid;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  background: var(--panel);
}
.table .row.head {
  background: #414141;
  font-weight: 700;
}
.table .row:hover:not(.head) {
  background: #383838;
}
.table .row:last-child { border-bottom: none; }
.table .row > div {
  color: var(--text);
  white-space: normal;
  word-break: break-word;
}

/* === Forms === */
.form input,
.form select,
.form textarea {
  background: #303030;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 8px;
  padding: 10px;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: #fff;
}

/* === Badges / Status === */
.badge {
  background: #303030;
  border: 1px solid #414141;
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  padding: 4px 8px;
}

/* Προτεραιότητες σε αποχρώσεις γκρι */
.prio-low      { background:#2a2a2a; color:#ccc; }
.prio-normal   { background:#3a3a3a; color:#fff; }
.prio-high     { background:#414141; color:#fff; }
.prio-critical { background:#000; color:#fff; }

/* Καταστάσεις */
.status, .state {
  border: 1px solid var(--border);
  background: #2c2c2c;
  border-radius: 999px;
  padding: 4px 10px;
  color: #fff;
  font-size: 12px;
}
.status-todo, .state-planning    { background: #2b2b2b; }
.status-doing, .state-ongoing    { background: #383838; }
.status-review                   { background: #414141; }
.status-done, .state-done        { background: #1f1f1f; }
.status-canceled, .state-archived{ background: #141414; color: #bbb; }

/* === Accordion / Notes === */
.notes-panel, .task-panel {
  background: #303030;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  border-left: 3px solid #414141;
  color: var(--text);
}

/* === Calendar === */
.wide-calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(180px, 1fr));
  gap: 14px;
}
.wide-calendar .day {
  background: #303030;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
}
.wide-calendar .day:hover {
  background: #383838;
}
.wide-calendar .date {
  color: #bfbfbf;
}
.wide-calendar .chip {
  background: #414141;
  border: 1px solid #555;
  color: #fff;
  border-radius: 8px;
  padding: 4px 6px;
  margin-bottom: 4px;
}

/* === Footer === */
.footer {
  color: #bfbfbf;
  border-top: 1px solid var(--border);
  padding: 20px;
  text-align: center;
}

/* Hosting status badges (monochrome) */
.hs-badge{
  display:inline-block;
  padding:3px 8px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#2e2e2e;
  color:#fff;
  font-size:12px;
}
.hs-badge.active   { background:#303030; color:#eaeaea; }
.hs-badge.expiring { background:#3a3a3a; color:#ffffff; }
.hs-badge.expired  { background:#000000; color:#ffffff; border-color:#2d2d2d; }
.hs-badge.canceled { background:#212121; color:#bfbfbf; border-color:#2a2a2a; }


/* Fix secondary/ghost buttons to match .btn dimensions */
.btn, .btn-secondary, .btn-ghost{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 700;
  line-height: 1;         /* ίδιο ύψος με input buttons */
}

.btn-secondary{
  background: #303030;
  color: #fff;
  border: 1px solid var(--border);
}
.btn-secondary:hover{ background:#383838; }

.btn-ghost{
  background: transparent;
  color:#fff;
  border:1px dashed var(--border);
}
.btn-ghost:hover{ background:#2a2a2a; }



/* File tree */
.file-tree { padding: 10px; }
.tree-header { font-weight: 800; margin-bottom: 8px; }
.tree-root .root-line { display:flex; align-items:center; gap:8px; margin-bottom:6px; }
.tree-children { padding-left: 0; }

.tree-list { list-style:none; padding-left: 16px; margin: 6px 0; }
.tree-item { position: relative; margin: 4px 0; }
.tree-link { color: var(--text); }
.tree-link.active { text-decoration: underline; }
.tree-item.folder > .tree-link { font-weight: 600; }

/* twisty (βελάκι) */
.twisty{
  width:18px; height:18px;
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid var(--border); background:transparent; color:var(--text);
  border-radius:4px; cursor:pointer; position:relative;
}
.twisty::before{
  content:'›'; font-size:14px; line-height:1; transform: rotate(0deg);
  transition: transform .15s ease;
}
.twisty.open::before{ transform: rotate(90deg); }

/* μικρό εικονίδιο αρχείου */
.tree-file{ opacity:.85; margin-right:6px; }

/* breadcrumbs */
.breadcrumbs { color: var(--muted); }
.breadcrumbs a{ color: var(--text); }
.breadcrumbs .sep{ margin: 0 6px; color: var(--muted); }

/* ===== Services (multi-select chips) ===== */
.service-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  width: 100%;
}

label.service-chip{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #303030;             /* panel */
  color: #fff;                      /* text */
  border: 1px solid #414141;        /* border */
  cursor: pointer;
  user-select: none;
  transition: .15s ease;
  min-height: 44px;
}

/* checkbox εμφάνιση */
.service-chip input[type="checkbox"]{
  appearance: none;
  width: 18px; height: 18px;
  border-radius: 4px;
  border: 2px solid #8a8a8a;
  background: #212121;
  display: grid; place-items: center;
  transition: .15s ease;
}

/* checked state */
.service-chip input[type="checkbox"]:checked{
  border-color: #7fb2ff;
  background: #7fb2ff;
}

/* highlight του chip όταν είναι επιλεγμένο */
.service-chip:has(input[type="checkbox"]:checked){
  background: #3a3a3a;
  border-color: #7fb2ff;
  box-shadow: inset 0 0 0 1px rgba(127,178,255,.25);
}

/* hover */
.service-chip:hover{
  background: #353535;
  border-color: #555;
}

/* small screens */
@media (max-width: 560px){
  .service-grid{ grid-template-columns: repeat(auto-fit,minmax(120px,1fr)); }
}

/* ===== Buttons (global) ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #303030;
  color: #fff;
  border: 1px solid #414141;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  min-height: 42px;
  min-width: 110px; /* ίσο μέγεθος */
}

.btn:hover {
  background: #3a3a3a;
  border-color: #5a5a5a;
}

.btn:active {
  background: #2a2a2a;
}

/* κουμπί ακύρωσης */
.btn.cancel {
  background: #212121;
  color: #ccc;
  border: 1px solid #414141;
}

.btn.cancel:hover {
  background: #2a2a2a;
  color: #fff;
}

/* κουμπί αποθήκευσης/δημιουργίας */
.btn.primary {
  background: #414141;
  border: 1px solid #5a5a5a;
  color: #fff;
}

.btn.primary:hover {
  background: #4b4b4b;
  border-color: #6a6a6a;
}

/* ====== FULL WIDTH DASHBOARD ====== */

/* Κατάργηση περιορισμού πλάτους */
.main-content,
.container,
.content-wrapper {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 20px !important;
}

/* Πίνακες και grids να “αναπνέουν” */
.grid.stats,
.grid {
  gap: 20px;
  width: 100%;
}

/* Οι κάρτες να πιάνουν όσο χώρο χρειάζεται */
.card {
  width: 100%;
  box-sizing: border-box;
}

/* Πίνακες: να απλώνονται σε όλο το πλάτος */
.table {
  width: 100%;
}

/* Αν θες και το header να πηγαίνει άκρη-άκρη */
.header-actions {
  width: 100%;
  justify-content: space-between;
  margin: 0 auto 20px auto;
  padding: 0 20px;
}

/* Λίγη αισθητική ισορροπία */
body {
  overflow-x: hidden;
}

/* === Οριζόντια Διάταξη Εγγραφών στο Dashboard === */

/* Full-width layout */
.main-content,
.container,
.content-wrapper {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 auto;
  padding: 0 24px;
}

/* Οι "σειρές" καρτών να είναι οριζόντιες */
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

/* Κάθε card να έχει σταθερό πλάτος (responsive) */
.card {
  flex: 1 1 calc(33.333% - 20px);
  box-sizing: border-box;
  background: #1e1e1e;
  border-radius: 8px;
  padding: 20px;
  min-width: 320px;
}

/* Για μικρές οθόνες να γίνονται 2 ή 1 ανάλογα */
@media (max-width: 1400px) {
  .card { flex: 1 1 calc(50% - 20px); }
}
@media (max-width: 800px) {
  .card { flex: 1 1 100%; }
}

/* Οι πίνακες μέσα στις κάρτες να “αναπνέουν” */
.table {
  width: 100%;
  border-collapse: collapse;
}
.table .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 6px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.table .row.head {
  font-weight: 600;
  color: #ccc;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Οι κάρτες στα “Πρόσφατες Εργασίες”, “Σημειώσεις” να εμφανίζονται ως grid */
.table.cols-6, .table.cols-4, .table.cols-3 {
  display: block;
  width: 100%;
}

/* Για ομορφιά */
.card h2 {
  font-size: 16px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 4px;
}


/* ==== Compact square +/- στα Character Stats (nuclear override) ==== */
.rpg .stats-wrap .stat-controls .btnPlus,
.rpg .stats-wrap .stat-controls .btnMinus,
.rpg .stats-wrap .stat-controls button.btnPlus.btn,
.rpg .stats-wrap .stat-controls button.btnMinus.btn{
  all: unset !important;              /* σβήνει ΟΛΑ τα κληρονομημένα styles (.btn κλπ) */
  width:22px !important;
  height:22px !important;
  display:inline-grid !important;
  place-items:center !important;
  background:#1f2532 !important;
  color:#fff !important;
  border:1px solid #33435e !important;
  border-radius:6px !important;
  font-weight:900 !important;
  font-size:14px !important;
  line-height:22px !important;        /* κάθετη στοίχιση */
  cursor:pointer !important;
  user-select:none !important;
}

.rpg .stats-wrap .stat-controls{ gap:6px !important; }

.rpg .stats-wrap .stat-value{
  min-width:36px !important;
  padding:4px 6px !important;
}

.rpg .stats-wrap .stat-box{
  min-height:48px !important;
  padding:8px 10px !important;
}


