@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Sora:wght@600;700&display=swap");

:root {
  --bg: #0f172a;
  --panel: #ffffff;
  --muted: #64748b;
  --line: #e2e8f0;
  --primary: #0ea5e9;
  --accent: #f97316;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, sans-serif;
  color: #0f172a;
  background: #f1f5f9;
}

a {
  color: inherit;
}

body.login-page {
  background:
    radial-gradient(circle at 8% 14%, rgba(14, 165, 233, 0.24), transparent 34%),
    radial-gradient(circle at 88% 84%, rgba(249, 115, 22, 0.2), transparent 36%),
    linear-gradient(145deg, #e2e8f0 0%, #f8fafc 48%, #e2e8f0 100%);
}

.login-wrap {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  padding: 20px;
}

.login-left {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 22%, rgba(14, 165, 233, 0.24), transparent 36%),
    radial-gradient(circle at 82% 74%, rgba(249, 115, 22, 0.2), transparent 36%),
    linear-gradient(160deg, #0f172a 0%, #17263d 52%, #1f314f 100%);
  color: #fff;
  padding: 56px 54px;
  box-shadow: 0 24px 65px rgba(15, 23, 42, 0.28);
}

.login-left h1 {
  margin: 18px 0 14px;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: 0.2px;
}

.login-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.login-brand-chip {
  display: inline-block;
  margin: 0;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.45);
  background: rgba(14, 165, 233, 0.15);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.login-hero-copy {
  margin: 0 0 26px;
  max-width: 560px;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.48;
}

.login-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-tile {
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.36);
  padding: 14px;
}

.hero-tile h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.hero-tile p {
  margin: 0;
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.4;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.login-card {
  width: 100%;
  max-width: 450px;
  border-radius: 24px;
  border-color: rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.16);
}

.login-eyebrow {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0369a1;
  font-weight: 700;
}

.login-title {
  margin: 8px 0 6px;
  font-size: 34px;
  line-height: 1.15;
}

.login-subtitle {
  margin: 0;
}

.login-form {
  margin-top: 18px;
}

.login-form input {
  margin-bottom: 12px;
}

.login-form button {
  margin-top: 4px;
}

.login-hint {
  margin: 16px 0 0;
}

.label {
  display: block;
  margin: 0 0 6px;
  font-size: 13px;
  color: #334155;
  font-weight: 600;
}

input,
select,
textarea,
button {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  padding: 11px 13px;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #0284c7;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

button {
  background: var(--bg);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  border: 0;
}

button:hover {
  background: #1e293b;
}

button.secondary {
  background: #f8fafc;
  color: #0f172a;
}

button.secondary.emp-del {
  background: linear-gradient(120deg, #ef4444, #dc2626);
  color: #fff;
  border: 1px solid #b91c1c;
  box-shadow: 0 8px 16px rgba(220, 38, 38, 0.2);
}

button.secondary.emp-del:hover {
  background: linear-gradient(120deg, #f87171, #ef4444);
  color: #fff;
}

body.app-page {
  background:
    radial-gradient(circle at 10% 8%, rgba(14, 165, 233, 0.18), transparent 30%),
    radial-gradient(circle at 88% 84%, rgba(249, 115, 22, 0.16), transparent 34%),
    linear-gradient(150deg, #e2e8f0 0%, #f8fafc 45%, #e2e8f0 100%);
}

.app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 286px 1fr;
  gap: 14px;
  padding: 14px;
}

.sidebar {
  position: sticky;
  top: 14px;
  height: calc(100vh - 28px);
  overflow: auto;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background:
    radial-gradient(circle at 18% 12%, rgba(14, 165, 233, 0.2), transparent 36%),
    linear-gradient(165deg, #0f172a 0%, #16253b 52%, #1e314f 100%);
  color: #fff;
  padding: 22px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.24);
}

.brand {
  margin-bottom: 18px;
}

.brand-mini {
  margin: 0;
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.35);
  background: rgba(14, 165, 233, 0.14);
  color: #dbeafe;
}

.brand h2 {
  margin: 10px 0 4px;
  font-size: 29px;
  line-height: 1.1;
}

.brand-copy {
  margin: 0;
  color: #cbd5e1;
  font-size: 13px;
}

.side-nav {
  margin-top: 12px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: #cbd5e1;
  padding: 11px 12px;
  border-radius: 12px;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-link::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #94a3b8;
}

.nav-link.active {
  background: linear-gradient(120deg, rgba(14, 165, 233, 0.26), rgba(249, 115, 22, 0.18));
  border-color: rgba(125, 211, 252, 0.34);
  color: #fff;
  transform: translateX(2px);
}

.nav-link.active::before {
  background: #67e8f9;
}

.nav-link:hover {
  border-color: rgba(148, 163, 184, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.userbox {
  margin-top: auto;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 16px;
  padding: 12px;
  background: rgba(15, 23, 42, 0.38);
}

.userbox-label {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #67e8f9;
}

.user-name {
  margin-top: 6px;
  font-size: 18px;
  font-weight: 700;
}

.user-role {
  margin-top: 3px;
  color: #cbd5e1;
}

.logout-main {
  margin-top: 12px;
  background: linear-gradient(120deg, #ef4444, #dc2626);
  border: 1px solid #b91c1c;
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.24);
}

.logout-main:hover {
  background: linear-gradient(120deg, #f87171, #ef4444);
}

.main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(7px);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.12);
  padding: 16px 18px;
}

.topbar-copy {
  min-width: 0;
}

.topbar-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: #0284c7;
  font-weight: 700;
}

.topbar h1 {
  margin: 4px 0 2px;
  font-size: 29px;
}

.topbar-note {
  margin: 0;
}

.top-logout {
  width: auto;
  min-width: 118px;
  background: linear-gradient(120deg, #ef4444, #dc2626) !important;
  color: #fff !important;
  border: 1px solid #b91c1c;
  box-shadow: 0 8px 16px rgba(220, 38, 38, 0.18);
}

.top-logout:hover {
  background: linear-gradient(120deg, #f87171, #ef4444) !important;
}

.section {
  display: none;
}

.section.active {
  display: block;
  animation: section-reveal 0.2s ease;
}

@keyframes section-reveal {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-grid {
  margin-top: 12px;
}

.row {
  display: grid;
  gap: 12px;
}

.row.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.row.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.row.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.section .card + .card {
  margin-top: 12px;
}

.panel-title {
  margin: 0 0 12px;
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  color: #0f172a;
}

.panel-subtitle {
  margin: -2px 0 12px;
  color: #475569;
  font-size: 13px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.action-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.24);
}

.action-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.95), rgba(56, 189, 248, 0.45));
}

.action-panel-employee::before {
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.95), rgba(37, 99, 235, 0.55));
}

.action-panel-sim::before {
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.92), rgba(14, 165, 233, 0.48));
}

.action-panel-assign::before {
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.95), rgba(251, 146, 60, 0.45));
}

.action-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.action-head-copy {
  min-width: 0;
}

.action-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(14, 116, 144, 0.2);
  background: rgba(14, 165, 233, 0.1);
  color: #075985;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.action-head .panel-title {
  margin: 10px 0 6px;
  font-size: 24px;
  line-height: 1.12;
}

.action-head .panel-subtitle {
  margin: 0;
  max-width: 680px;
  font-size: 13px;
  color: #334155;
}

.action-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  min-width: 212px;
}

.action-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.8);
  color: #0f172a;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.form-shell {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(248, 250, 252, 0.92) 100%);
  border-radius: 16px;
  padding: 14px;
}

.form-grid {
  gap: 14px;
}

.permissions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.permission-tile {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: #fff;
  border-radius: 12px;
  padding: 10px;
}

.permission-title {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
}

.permission-copy {
  margin: 4px 0 0;
  font-size: 12px;
  color: #64748b;
}

.permission-check {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #0284c7;
  flex-shrink: 0;
}

.form-shell input,
.form-shell select {
  min-height: 44px;
  border-radius: 11px;
  border-color: #cbd5e1;
  background: #fff;
}

.form-shell input::placeholder {
  color: #94a3b8;
}

.operator-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 7px;
}

.operator-chip {
  width: auto;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(219, 234, 254, 0.55);
  color: #1e3a8a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.operator-chip:hover {
  background: rgba(191, 219, 254, 0.88);
}

.field-help {
  margin: 2px 0 0;
  font-size: 11px;
  color: #64748b;
}

.action-field {
  justify-content: flex-end;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px dashed rgba(148, 163, 184, 0.32);
  padding-top: 12px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.form-actions button {
  width: auto;
  min-width: 140px;
  min-height: 42px;
  padding: 10px 16px;
  margin: 0;
  border-radius: 10px;
}

.form-second-row {
  margin-top: 2px;
}

.form-actions-inline {
  margin-top: 0;
  max-width: none;
}

.assign-btn {
  min-width: 154px;
}

.btn-primary {
  background: linear-gradient(120deg, #0284c7, #0369a1);
  box-shadow: 0 8px 18px rgba(3, 105, 161, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(120deg, #0ea5e9, #0284c7);
}

.btn-secondary {
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #0f172a;
}

.btn-secondary:hover {
  background: #eff6ff;
}

.dashboard-stats .stat:nth-child(1) {
  border-top: 3px solid #0ea5e9;
}

.dashboard-stats .stat:nth-child(2) {
  border-top: 3px solid #22c55e;
}

.dashboard-stats .stat:nth-child(3) {
  border-top: 3px solid #fb923c;
}

.dashboard-stats .stat:nth-child(4) {
  border-top: 3px solid #a855f7;
}

.stat {
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 14px;
  padding: 13px 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.stat .k {
  color: #475569;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat .v {
  font-size: 29px;
  margin-top: 6px;
  font-weight: 700;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 12px;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 14px;
  background: #f8fafc;
}

.toolbar > * {
  width: auto;
  min-width: 140px;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

th,
td {
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
  padding: 10px 9px;
  vertical-align: top;
}

thead th {
  background: #f8fafc;
}

tbody tr:hover {
  background: #f8fafc;
}

tbody tr:last-child td {
  border-bottom: none;
}

th {
  color: #475569;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: #fff;
}

.operator-dashboard-table tbody tr.operator-row td {
  vertical-align: middle;
}

.operator-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.operator-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.18);
  flex-shrink: 0;
}

.operator-icon.operator-airtel {
  background: linear-gradient(140deg, #ef4444, #dc2626);
}

.operator-icon.operator-jio {
  background: linear-gradient(140deg, #2563eb, #1d4ed8);
}

.operator-icon.operator-vi {
  background: linear-gradient(140deg, #7c3aed, #6d28d9);
}

.operator-icon.operator-bsnl {
  background: linear-gradient(140deg, #0284c7, #0369a1);
}

.operator-icon.operator-mtnl {
  background: linear-gradient(140deg, #059669, #047857);
}

.operator-icon.operator-default {
  background: linear-gradient(140deg, #475569, #334155);
}

.operator-name {
  margin: 0;
  font-weight: 700;
  color: #0f172a;
  font-size: 14px;
}

.operator-meta {
  margin: 2px 0 0;
  font-size: 11px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.operator-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.operator-count.total {
  background: #e2e8f0;
  color: #0f172a;
}

.operator-count.available {
  background: #dcfce7;
  color: #166534;
}

.operator-count.assigned {
  background: #ffedd5;
  color: #9a3412;
}

.operator-count.deactivated {
  background: #fee2e2;
  color: #991b1b;
}

td button,
td select {
  margin-bottom: 6px;
}

.tag {
  display: inline-block;
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #e2e8f0;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tag.available {
  background: #dcfce7;
  color: #166534;
}

.tag.assigned {
  background: #ffedd5;
  color: #9a3412;
}

.tag.deactivated {
  background: #fee2e2;
  color: #991b1b;
}

.msg {
  margin-top: 10px;
  font-size: 13px;
  color: #0f766e;
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 10px;
  padding: 8px 10px;
}

.error {
  color: #b91c1c;
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(185, 28, 28, 0.24);
}

.small {
  font-size: 12px;
  color: var(--muted);
}

.list-cards {
  display: none;
}

.entity-card {
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 12px;
}

.entity-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.entity-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.entity-sub {
  margin: 4px 0 0;
  color: #475569;
  font-size: 12px;
}

.entity-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.entity-item {
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: 8px;
  background: #fff;
}

.entity-item span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
}

.entity-item strong {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: #0f172a;
}

.entity-actions {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

@media (max-width: 980px) {
  .login-wrap,
  .app {
    grid-template-columns: 1fr;
    padding: 14px;
    gap: 14px;
  }

  .login-left {
    padding: 32px 24px;
  }

  .login-left h1 {
    font-size: 36px;
  }

  .login-hero-copy {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .login-hero-grid {
    grid-template-columns: 1fr;
  }

  .row.cols-2,
  .row.cols-3,
  .row.cols-4 {
    grid-template-columns: 1fr;
  }

  .toolbar > * {
    width: 100%;
  }

  .sidebar {
    position: relative;
    top: auto;
    height: auto;
    max-height: none;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-logout {
    width: 100%;
  }

  .action-head {
    flex-direction: column;
    align-items: stretch;
  }

  .action-badges {
    min-width: 0;
    justify-content: flex-start;
  }

  .action-head .panel-title {
    font-size: 21px;
  }

  .form-shell {
    padding: 12px;
  }

  .permissions-grid {
    grid-template-columns: 1fr;
  }

  .form-footer {
    justify-content: stretch;
  }

  .form-actions {
    width: 100%;
    flex-direction: column;
    justify-content: stretch;
  }

  .form-actions button {
    width: 100%;
    min-width: 0;
  }

  .assign-btn {
    max-width: none;
  }

  .table-wrap {
    display: none;
  }

  .operator-dashboard-table .operator-cell {
    gap: 8px;
  }

  .operator-dashboard-table .operator-icon {
    width: 32px;
    height: 32px;
    font-size: 10px;
  }

  .list-cards {
    display: grid;
    gap: 10px;
    margin-top: 10px;
  }

  .entity-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .action-badge,
  .operator-chip {
    width: 100%;
  }
}
