:root {
  --bg: #08111f;
  --card: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.1);
  --text: #edf5ff;
  --muted: #9cafc8;
  --primary: #29d6ff;
  --primary2: #00b5d8;
  --danger: #ff7a7a;
  --success: #72e5ab;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(41, 214, 255, 0.16), transparent 22%),
    radial-gradient(circle at left, rgba(48, 204, 140, 0.12), transparent 18%),
    var(--bg);
}

body.modal-open {
  overflow: hidden;
}

.company-topmenu {
  position: fixed;
  top: 0;
  left: 344px;
  right: 24px;
  z-index: 90;
  padding: 18px 0 0;
}

.company-topmenu-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.company-profile-trigger,
.company-settings-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(41, 214, 255, 0.18);
  border-radius: 18px;
  background: rgba(9, 19, 34, 0.88);
  color: #b8f4ff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
  transition: 0.2s ease;
}

.company-profile-trigger {
  border-color: rgba(255, 255, 255, 0.1);
  color: #eef8ff;
}

.company-profile-trigger:hover,
.company-settings-trigger:hover {
  transform: translateY(-1px);
  background: rgba(16, 29, 49, 0.94);
}

.company-profile-trigger:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.company-backup-countdown {
  display: grid;
  gap: 4px;
  min-width: 190px;
  padding: 10px 14px;
  border: 1px solid rgba(41, 214, 255, 0.18);
  border-radius: 18px;
  background: rgba(9, 19, 34, 0.88);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
  text-align: center;
}

.company-backup-countdown.is-disabled {
  border-color: rgba(255, 122, 122, 0.22);
  background: rgba(48, 14, 20, 0.88);
}

.company-backup-countdown-label {
  color: #8dd9bb;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.company-backup-countdown.is-disabled .company-backup-countdown-label {
  color: #ffb7b7;
}

.company-backup-countdown-value {
  color: #b7ffd7;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.company-backup-countdown.is-disabled .company-backup-countdown-value {
  color: #ffc4c4;
}

.company-settings-trigger:hover {
  border-color: rgba(41, 214, 255, 0.32);
}

.company-profile-trigger svg,
.company-settings-trigger svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

a {
  color: inherit;
  text-decoration: none;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #d9e6fb;
  font-size: 14px;
}

textarea {
  resize: vertical;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: #a8bedb;
  font-size: 13px;
}

td {
  font-size: 14px;
}

.tag {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid rgba(41, 214, 255, 0.22);
  border-radius: 999px;
  background: rgba(41, 214, 255, 0.12);
  color: #9beeff;
  font-size: 12px;
  font-weight: 700;
}

.tag-danger {
  border-color: rgba(255, 122, 122, 0.28);
  background: rgba(255, 122, 122, 0.14);
  color: #ffc4c4;
}

.btn-primary,
.btn-danger,
.btn-success,
.btn-warning,
.btn-neutral {
  display: inline-block;
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #03121b;
  font-weight: 800;
}

.btn-danger {
  border-color: rgba(255, 122, 122, 0.24);
  background: rgba(255, 122, 122, 0.14);
  color: #ffc4c4;
}

.btn-success {
  border-color: rgba(114, 229, 171, 0.24);
  background: rgba(114, 229, 171, 0.14);
  color: #b7ffd7;
}

.btn-warning {
  border-color: rgba(255, 211, 113, 0.28);
  background: rgba(255, 211, 113, 0.14);
  color: #ffe2a4;
}

.btn-neutral {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: #dbe8fd;
}

.btn-primary:hover,
.btn-danger:hover,
.btn-success:hover,
.btn-warning:hover,
.btn-neutral:hover {
  transform: translateY(-1px);
}

.full {
  width: 100%;
}

.login-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

.login-wrapper {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 24px;
  align-items: center;
  width: min(1180px, 100%);
}

.login-left h1 {
  margin: 14px 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
}

.login-left p,
.login-left li,
.back-link,
.content p {
  color: var(--muted);
}

.bullets {
  margin: 20px 0 24px 18px;
}

.bullets li {
  margin-bottom: 8px;
}

.back-link {
  display: inline-block;
  margin-top: 8px;
}

.login-card,
.sidebar,
.dash-card,
.card-box,
.alert {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.login-card {
  padding: 30px;
}

.lock {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  border-radius: 20px;
  background: rgba(41, 214, 255, 0.12);
  font-size: 32px;
}

.login-card h2 {
  text-align: center;
  font-size: 30px;
}

.login-card > p {
  margin-top: 8px;
  color: var(--muted);
  text-align: center;
}

.form-grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  border-color: var(--primary);
}

.form-note {
  margin-top: -4px;
  color: #9ec0df;
  font-size: 13px;
  line-height: 1.5;
}

.hidden-block {
  display: none;
}

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

.test-box {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 14px;
}

.alert {
  margin-top: 16px;
  padding: 12px 14px;
}

.alert.error {
  border-color: rgba(255, 122, 122, 0.25);
  background: rgba(255, 122, 122, 0.12);
  color: #ffc0c0;
}

.alert.success {
  margin-bottom: 16px;
  border-color: rgba(114, 229, 171, 0.25);
  background: rgba(114, 229, 171, 0.12);
  color: #b7ffd7;
}

.app-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100vh - 36px);
  margin: 18px;
  padding: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.sidebar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(41, 214, 255, 0.18), transparent 34%);
  pointer-events: none;
}

.sidebar > * {
  position: relative;
  z-index: 1;
}

.sidebar-top {
  display: grid;
  gap: 18px;
}

.sidebar-brand {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 10px 8px 2px;
  text-align: center;
}

.sidebar-brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 30% 30%, rgba(41, 214, 255, 0.28), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 36px rgba(0, 0, 0, 0.22);
}

.sidebar-brand-mark::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  background: radial-gradient(circle, rgba(4, 18, 34, 0.18), rgba(4, 18, 34, 0.02));
  pointer-events: none;
}

.sidebar-logo {
  display: block;
  position: relative;
  z-index: 1;
  width: 70px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 26px rgba(41, 214, 255, 0.2));
}

.sidebar-brand-copy {
  display: grid;
  gap: 8px;
  justify-items: center;
  min-width: 0;
}

.sidebar-brand-copy h2 {
  max-width: 100%;
  font-size: clamp(30px, 2vw, 34px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  word-break: break-word;
}

.sidebar-brand-copy span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.sidebar-nav {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.sidebar-label {
  display: block;
  padding: 0 4px 6px;
  color: #7f9dbc;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sidebar-nav a,
.sidebar-logout {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: #dbe8fd;
  transition: 0.2s ease;
}

.sidebar-nav a:hover,
.sidebar-logout:hover {
  transform: translateX(3px);
  border-color: rgba(41, 214, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.sidebar-nav a.active {
  border-color: rgba(41, 214, 255, 0.24);
  background: linear-gradient(135deg, rgba(41, 214, 255, 0.18), rgba(0, 181, 216, 0.1));
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.nav-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #8fdfff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.nav-kicker svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.nav-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.nav-copy strong {
  color: #f5fbff;
  font-size: 15px;
}

.nav-copy small {
  color: #89a7c8;
  font-size: 12px;
  line-height: 1.35;
}

.sidebar-footer {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-logout {
  border-color: rgba(255, 122, 122, 0.14);
  background: rgba(255, 122, 122, 0.08);
  color: #ffd1d1;
}

.sidebar-logout .nav-kicker {
  background: rgba(255, 122, 122, 0.12);
  color: #ffc4c4;
}

.content {
  padding: 24px 24px 24px 0;
}

body.has-company-floating-tools .content {
  padding-top: 128px;
}

.content-head {
  margin-bottom: 22px;
}

body.has-company-floating-tools .content-head.between {
  padding-right: 0;
  min-height: 0;
}

.between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.content h1 {
  margin-top: 10px;
  font-size: 40px;
}

.dashboard-greeting {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.dashboard-greeting span {
  font-size: 0.82em;
  font-weight: 700;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.dash-card {
  padding: 20px;
}

.dash-card small {
  color: var(--muted);
}

.dash-card strong {
  display: block;
  margin-top: 10px;
  color: #99efff;
  font-size: 28px;
}

.panel.two-cols {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 16px;
}

.card-box {
  padding: 22px;
}

.card-box h3 {
  font-size: 24px;
}

.table-wrap {
  overflow: auto;
}

.table-wrap form {
  margin: 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.status-pill.success {
  background: rgba(114, 229, 171, 0.14);
  color: #b7ffd7;
}

.status-pill.warning {
  background: rgba(255, 211, 113, 0.14);
  color: #ffe2a4;
}

.status-pill.danger {
  background: rgba(255, 122, 122, 0.14);
  color: #ffc4c4;
}

.actions-cell {
  white-space: nowrap;
}

.actions-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.section-head p {
  margin-top: 6px;
}

.backup-shell {
  display: grid;
  gap: 18px;
}

.backup-browser {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.backup-browser-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.backup-browser-head h2 {
  margin-bottom: 8px;
  font-size: 30px;
}

.backup-browser-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.backup-browser-stats span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #dfefff;
  font-size: 13px;
}

.backup-pathbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: #89a7c8;
}

.breadcrumbs a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  transition: 0.2s ease;
}

.breadcrumbs a:hover {
  border-color: rgba(41, 214, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.breadcrumbs a.active {
  border-color: rgba(41, 214, 255, 0.18);
  background: rgba(41, 214, 255, 0.14);
  color: #bff6ff;
}

.backup-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.backups-section {
  margin-top: 0;
}

.backup-simple-list {
  display: grid;
  gap: 10px;
}

.backup-list-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  transition: 0.2s ease;
}

.backup-list-row:hover {
  border-color: rgba(41, 214, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.backup-list-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(41, 214, 255, 0.12);
  color: #9beeff;
  overflow: hidden;
}

.backup-list-icon.folder-icon {
  background: linear-gradient(135deg, rgba(255, 196, 87, 0.22), rgba(255, 173, 51, 0.14));
  color: #ffc95a;
}

.backup-list-icon.folder-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.backup-list-icon.file-icon {
  background: rgba(255, 255, 255, 0.05);
}

.backup-list-icon.file-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.backup-list-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.backup-list-copy strong {
  color: #f4fbff;
  font-size: 16px;
  word-break: break-word;
}

.backup-list-copy small {
  color: #89a7c8;
}

.backup-list-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #dff8ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.file-row {
  grid-template-columns: 52px 1fr auto;
}

.companies-list-card,
.devices-list-card,
.company-settings-card {
  display: grid;
  gap: 18px;
}

.companies-counter,
.panel-counter {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #dff0ff;
  font-size: 13px;
  font-weight: 700;
}

.modal-shell {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 50;
}

.modal-shell[hidden] {
  display: none !important;
}

.modal-shell.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 18, 0.72);
  backdrop-filter: blur(6px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(11, 21, 37, 0.96), rgba(17, 29, 47, 0.94));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.modal-head h3 {
  margin-top: 12px;
}

.modal-head p {
  margin-top: 10px;
}

.modal-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #e9f6ff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.diagnostic-modal-card {
  width: min(640px, 100%);
}

.danger-modal-card {
  border-color: rgba(255, 122, 122, 0.18);
  box-shadow: 0 28px 80px rgba(88, 16, 16, 0.28);
}

.danger-title {
  color: #ffc4c4;
}

.diagnostic-grid {
  display: grid;
  gap: 12px;
}

.diagnostic-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.diagnostic-row strong {
  color: #f6fcff;
  font-size: 16px;
  text-align: right;
}

.diagnostic-label {
  color: #9fb8d7;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.diagnostic-note {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  color: #dfefff;
  line-height: 1.6;
}

.diagnostic-note.warning {
  border-color: rgba(255, 211, 113, 0.24);
  background: rgba(255, 211, 113, 0.12);
  color: #ffe2a4;
}

.diagnostic-note.danger {
  border-color: rgba(255, 122, 122, 0.24);
  background: rgba(255, 122, 122, 0.12);
  color: #ffc4c4;
}

@media (max-width: 1100px) {
  .login-wrapper,
  .app-layout,
  .panel.two-cols,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: relative;
    height: auto;
    margin: 18px 18px 0;
  }

  .content {
    padding: 18px;
  }

  body.has-company-floating-tools .content {
    padding-top: 132px;
  }

  .login-screen {
    padding: 18px;
  }

  .backup-browser-head {
    flex-direction: column;
  }

  body.has-company-floating-tools .content-head.between {
    padding-right: 0;
    min-height: 0;
  }

  .company-topmenu {
    left: 18px;
    right: 18px;
  }
}

@media (max-width: 720px) {
  .backup-browser,
  .content h1 {
    padding: 20px;
  }

  .company-settings-trigger {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .company-profile-trigger {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .company-topmenu {
    left: 14px;
    right: 14px;
    padding-top: 14px;
  }

  .company-topmenu-inner {
    gap: 8px;
  }

  .company-backup-countdown {
    min-width: 150px;
    padding: 8px 12px;
  }

  .company-backup-countdown-value {
    font-size: 16px;
  }

  body.has-company-floating-tools .content {
    padding-top: 112px;
  }

  .backup-browser-head h2,
  .content h1 {
    font-size: 26px;
  }

  .backup-pathbar,
  .backup-actions {
    display: grid;
  }

  .backup-actions .btn-neutral {
    text-align: center;
  }

  .backup-list-row,
  .file-row {
    grid-template-columns: 48px 1fr;
    align-items: flex-start;
  }

  .backup-list-icon {
    width: 48px;
    height: 48px;
  }

  .backup-list-meta,
  .backup-list-actions {
    grid-column: 2;
    justify-self: start;
  }

  .modal-shell {
    padding: 16px;
  }

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

  .modal-card {
    padding: 20px;
  }

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

  .diagnostic-row strong {
    text-align: left;
  }

  .modal-head {
    align-items: center;
  }

  .companies-counter,
  .panel-counter {
    justify-self: start;
  }
}
