html {
  font-size: 100%;
  min-height: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: #161616;
  color: #666666;
  font-family: Calibri, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  display: flex;
  flex-direction: column;
}

a {
  color: #486d97;
  text-decoration: none;
  transition: color .3s ease-in-out, background-color .3s ease-in-out;
}

a:hover {
  color: #3c8dd9;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #444444;
  font-weight: 400;
}

p {
  margin: 0.4rem 0 0.2rem;
}

ul,
ol {
  margin: 0.8rem 0 0.8rem 1.2rem;
}

.vf-site-header {
  color: #ffffff;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1100;
}

.vf-top-nav {
  background: #486d97;
  width: 100%;
}

.vf-top-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: nowrap;
}

.vf-main-nav {
  flex: 1 1 auto;
  min-width: 0;
}

.vf-nav-list,
.vf-nav-sublist,
.vf-footer-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vf-nav-list {
  display: flex;
  flex-wrap: wrap;
}

.vf-nav-list > li {
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.vf-nav-list > li:last-child {
  border-right: 0;
}

.vf-nav-list a,
.vf-nav-toggle {
  display: block;
  width: 100%;
  padding: 1rem 1rem;
  color: #ffffff;
  font-size: 0.95rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  font: inherit;
  text-align: left;
}

.vf-nav-list a:hover,
.vf-nav-list a:focus-visible,
.vf-nav-toggle:hover,
.vf-nav-toggle:focus-visible,
.vf-nav-item--has-children.vf-nav-item--open > .vf-nav-toggle {
  background: rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.vf-nav-toggle {
  position: relative;
  padding-right: 2.2rem;
  cursor: pointer;
}

.vf-nav-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.9rem;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.2s ease;
}

.vf-nav-item--has-children.vf-nav-item--open > .vf-nav-toggle::after,
.vf-nav-item--has-children:focus-within > .vf-nav-toggle::after {
  transform: translateY(-30%) rotate(-135deg);
}

.vf-nav-sublist {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 20;
  min-width: 14rem;
  background: #486d97;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 0.6rem 1.4rem rgba(14, 26, 40, 0.25);
  display: none;
}

.vf-nav-item--has-children.vf-nav-item--open > .vf-nav-sublist,
.vf-nav-item--has-children:focus-within > .vf-nav-sublist {
  display: block;
}

.vf-nav-sublist li {
  border: 0;
}

.vf-nav-sublist a {
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  letter-spacing: 0.06rem;
}

.vf-user-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  padding: 0.6rem 0;
  flex: 0 0 auto;
}

.vf-user-status {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  color: #ffffff;
}

.vf-user-status__name {
  font-size: 0.95rem;
  color: #ffffff;
}

.vf-user-status__action {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #ffffff;
  border-radius: 0.3rem;
  padding: 0.45rem 0.75rem;
  font: inherit;
}

.vf-user-status__action:hover,
.vf-user-status__action:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.vf-main-shell {
  background: #ffffff;
  padding: 1rem 0 2rem;
  flex: 1 0 auto;
  overflow-x: hidden;
}

.vf-site-content {
  max-width: 1200px;
}

main h1,
main h2 {
  line-height: 1.3;
  margin: 0.7rem 0 0.2rem;
}

main h1 {
  font-size: 1.6rem;
}

main h2 {
  font-size: 1.25rem;
}

main ul {
  list-style: outside;
}

main input[type="text"],
main input[type="email"],
main input[type="password"],
main input[type="number"],
main select,
main textarea,
main button {
  border-radius: 0.3rem;
}

main button,
main input[type="submit"],
.btn-primary {
  border: 0;
  background: #486d97;
  color: #ffffff;
}

main button:hover,
main input[type="submit"]:hover,
.btn-primary:hover {
  background: #486d97;
  color: #ffffff;
}

.vf-management-page {
  display: grid;
  gap: 1rem;
}

.vf-panel {
  border: 1px solid #d7dfe7;
  border-radius: 0.35rem;
  background: #ffffff;
  padding: 1rem 1.1rem;
  box-shadow: 0 0.35rem 1rem rgba(25, 48, 74, 0.08);
}

.vf-toolbar-form {
  padding: 0.85rem 1rem;
}

.vf-inline-action-form {
  padding: 1rem 0 0;
}

.vf-toolbar {
  display: flex;
  align-items: end;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.vf-toolbar-field {
  min-width: 12rem;
  flex: 1 1 16rem;
}

.vf-toolbar-actions {
  flex: 0 0 auto;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.vf-toolbar-end {
  justify-content: flex-end;
}

.vf-select,
.vf-action-button {
  min-height: 2.65rem;
  width: 100%;
  padding: 0.45rem 0.7rem;
  font-size: 1rem;
}

.vf-action-button {
  min-width: 14rem;
}

.vf-action-button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.vf-message {
  display: flex;
  align-items: center;
  padding: 0.6rem;
  border: 1px solid;
  border-left-width: 0.6rem;
}

.vf-message-error {
  border-color: #e62600;
  color: #be0027;
  background: #ffecec;
}

.vf-message-info {
  border-color: #3c8dd9;
  color: #4a6b9e;
  background: #e3f7fc;
}

.vf-section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.vf-section-heading-tight {
  margin-bottom: 0.9rem;
}

.vf-section-kicker {
  color: #486d97;
  font-size: 0.82rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

main .table-responsive {
  overflow-x: auto;
  width: 100%;
}

main .table {
  width: auto;
  max-width: 100%;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  color: #000000;
  --bs-table-color: #000000;
  --bs-table-bg: #ffffff;
  --bs-table-border-color: #ced9e5;
  --bs-table-striped-bg: #edf3fb;
  --bs-table-striped-color: #000000;
  --bs-table-hover-bg: #e6eef9;
  --bs-table-hover-color: #000000;
  table-layout: auto;
  vertical-align: top;
  border-collapse: separate;
  border-spacing: 0;
}

main .table > :not(caption) > * > * {
  padding: 0.42rem 0.5rem;
  white-space: nowrap;
  border-color: #ced9e5;
  line-height: 1.25;
}

main .table > thead > tr > th {
  background-color: #6e94c0;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.92rem;
  border-bottom: 1px solid #5d81aa;
}

main .table > tbody > tr:nth-child(odd) > * {
  background-color: #ffffff;
}

main .table > tbody > tr:nth-child(even) > * {
  background-color: #edf3fb;
}

main .table > tbody > tr:hover > * {
  background-color: #e6eef9;
}

.vf-results-table {
  color: #000000;
}

.vf-comparison-table-shell {
  width: min(calc(100vw - 2rem), 100%);
  margin: 0 auto;
}

.vf-comparison-table-shell--wide {
  width: min(calc(100vw - 1rem), 1600px);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 0;
  margin-right: 0;
}

.vf-comparison-table-scroll {
  overflow-x: auto;
  overflow-y: visible;
}

.vf-landing-fees-table {
  width: max-content;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.84rem;
}

main .table.vf-landing-fees-table > :not(caption) > * > * {
  padding: 0.28rem 0.42rem;
  text-align: center;
}

main .table.vf-landing-fees-table > thead > tr > th {
  white-space: normal;
  font-size: 0.84rem;
  line-height: 1.15;
  vertical-align: middle;
}

main .table.vf-landing-fees-table > tbody > tr > td:first-child,
main .table.vf-landing-fees-table > thead > tr > th:first-child,
main .table.vf-landing-fees-table > tbody > tr.summary > td:first-child {
  text-align: left;
}

.vf-landing-fees-table .vf-group-start {
  border-left: 4px solid #1f1f1f !important;
}

.vf-landing-fees-table .vf-subgroup-start {
  border-left: 2px solid #35597f !important;
}

.vf-header-note {
  display: inline-block;
  font-size: 0.74rem;
  line-height: 1.15;
  font-weight: 400;
}

.vf-amount-status {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  min-width: 5.9rem;
  width: 100%;
}

.vf-amount-cell {
  text-align: right;
}

.vf-amount-value {
  min-width: 3.8rem;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.vf-status-icon {
  position: relative;
  display: inline-block;
  width: 0.95rem;
  height: 0.95rem;
  flex: 0 0 auto;
  border-radius: 999px;
}

.vf-status-icon--danger {
  background: #c62828;
}

.vf-status-icon--danger::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.52rem;
  height: 0.14rem;
  background: #ffffff;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.vf-status-icon--warning {
  background: #f1c232;
}

.vf-status-icon--warning::before {
  content: "!";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3f3410;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

.vf-status-icon--info {
  background: #3c8dd9;
}

.vf-status-icon--info::before {
  content: "i";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.vf-status-icon--placeholder {
  background: transparent;
}

.vf-status-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.vf-status-icon-button:focus-visible {
  outline: 2px solid #486d97;
  outline-offset: 2px;
  border-radius: 999px;
}

.vf-detail-dialog {
  width: min(72rem, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  padding: 0;
  border: 1px solid #cfd9e5;
  border-radius: 0.45rem;
  box-shadow: 0 1rem 2rem rgba(14, 26, 40, 0.25);
}

.vf-detail-dialog::backdrop {
  background: rgba(10, 16, 24, 0.45);
}

.vf-detail-dialog__closebar {
  display: flex;
  justify-content: flex-end;
  padding: 0.35rem 0.45rem 0;
}

.vf-detail-dialog__close {
  min-width: 2rem;
  min-height: 2rem;
  padding: 0;
  border: 1px solid #ced9e5;
  border-radius: 999px;
  background: #ffffff;
  color: #486d97;
  font-size: 1.15rem;
  line-height: 1;
}

.vf-detail-dialog__content {
  padding: 0 1rem 1rem;
  overflow: auto;
}

.vf-detail-dialog__summary {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0.6rem 0 1rem;
}

.vf-detail-section + .vf-detail-section {
  margin-top: 1rem;
}

.vf-detail-section h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.vf-detail-table {
  width: 100%;
  max-width: 100%;
}

.vf-detail-col-time {
  width: 5.5rem;
}

.vf-detail-col-aircraft {
  width: 7rem;
}

.vf-detail-col-group {
  width: 7rem;
}

.vf-detail-col-category {
  width: 8rem;
}

.vf-detail-col-meta {
  width: 12rem;
}

.vf-detail-col-count {
  width: 7rem;
}

.vf-detail-col-amount {
  width: 10rem;
}

.vf-detail-col-comment {
  width: 18rem;
}

main .table.vf-detail-table > :not(caption) > * > * {
  white-space: nowrap;
}

main .table.vf-detail-table > :not(caption) > * > *:last-child {
  white-space: normal;
}

table.tablelist tr.summary,
table.tablelist td.colsummary {
  background: #666 !important;
  color: #fff !important;
}

main .table.tablelist > tbody > tr.summary > *,
main .table.tablelist > tbody > tr > .colsummary,
main .table.tablelist > tfoot > tr.summary > *,
main .table.tablelist > tfoot > tr > .colsummary {
  --bs-table-bg: #666666;
  --bs-table-accent-bg: #666666;
  --bs-table-striped-bg: #666666;
  --bs-table-striped-color: #ffffff;
  --bs-table-hover-bg: #666666;
  --bs-table-hover-color: #ffffff;
  background-color: #666666 !important;
  color: #ffffff !important;
  box-shadow: inset 0 0 0 9999px #666666 !important;
}

main .table.tablelist > tbody > tr.summary > * a,
main .table.tablelist > tbody > tr > .colsummary a,
main .table.tablelist > tfoot > tr.summary > * a,
main .table.tablelist > tfoot > tr > .colsummary a {
  color: #ffffff !important;
}

main .table.tablelist > tbody > tr.summary > td:not(:first-child),
main .table.tablelist > tbody > tr > td.colsummary:not(:first-child),
main .table.tablelist > tfoot > tr.summary > td:not(:first-child),
main .table.tablelist > tfoot > tr > td.colsummary:not(:first-child) {
  text-align: right;
}

.vf-preline {
  white-space: pre-line;
}

.vf-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1rem;
}

.vf-tank-chart {
  width: 100%;
  min-height: 28rem;
}

.vf-reservation-history-charts {
  display: grid;
  gap: 1rem;
}

.vf-reservation-history-chart {
  border: 1px solid #dce4ed;
  border-radius: 0.45rem;
  background: linear-gradient(180deg, #fbfdff 0%, #f5f8fc 100%);
  padding: 0.9rem 1rem 1rem;
}

.vf-reservation-history-chart__title {
  margin: 0 0 0.55rem;
  color: #324c69;
  font-size: 1.05rem;
  font-weight: 600;
}

.vf-reservation-history-chart__canvas {
  width: 100%;
  min-height: 11rem;
}

.vf-stat-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.vf-stat-card strong {
  font-size: 1.9rem;
  line-height: 1;
  color: #324c69;
  font-weight: 400;
}

.vf-wab-layout {
  display: grid;
  gap: 1.2rem;
}

.vf-wab-block {
  display: grid;
  gap: 0.9rem;
  padding-top: 0.2rem;
}

.vf-wab-block + .vf-wab-block {
  border-top: 1px solid #d7dfe7;
  padding-top: 1.25rem;
}

.vf-wab-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.vf-wab-block-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.vf-wab-block-footer {
  display: flex;
  justify-content: flex-end;
}

.vf-wab-block h2 {
  margin: 0;
}

.vf-wab-aircraft-top {
  margin-bottom: 1rem;
}

.vf-wab-card {
  border: 1px solid #dce4ed;
  border-radius: 0.45rem;
  background: linear-gradient(180deg, #fbfdff 0%, #f5f8fc 100%);
  padding: 0.95rem 1rem;
}

.vf-wab-form-row {
  display: grid;
  grid-template-columns: minmax(8rem, 10rem) minmax(0, 1fr);
  gap: 0.5rem 0.75rem;
  align-items: center;
}

.vf-wab-form-row + .vf-wab-form-row {
  margin-top: 0.45rem;
}

.vf-wab-card-divider {
  height: 0;
  margin: 0.7rem 0 0.35rem;
  border-top: 1px solid #d7dfe7;
}

.vf-wab-value-line,
.vf-wab-measure-line {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  flex-wrap: wrap;
}

.vf-wab-select-line {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  flex-wrap: wrap;
}

.vf-wab-value-box {
  width: 6rem;
  min-width: 6rem;
  max-width: 6rem;
  min-height: 2.25rem;
  padding: 0.28rem 0.5rem;
  border: 1px solid #ced9e5;
  border-radius: 0.3rem;
  background: #f7f9fc;
  color: #000000;
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-size: inherit;
}

.vf-wab-aircraft-select {
  max-width: min(16.5%, 13.2rem);
  margin-bottom: 0.35rem;
}

.vf-wab-airport-field {
  max-width: min(25%, 18rem);
}

.vf-wab-unit-label {
  min-width: 1.8rem;
  color: #5b6b7d;
}

.vf-wab-short-input {
  width: 6rem;
  min-width: 6rem;
  max-width: 6rem;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.vf-wab-inline-select {
  min-width: 30%;
  max-width: 30%;
}

.vf-wab-inline-select#vf-wab-burn-unit,
.vf-wab-inline-select--unit {
  min-width: 7.3%;
  max-width: 7.3%;
}

.vf-wab-inline-select--reserve {
  min-width: 22.5%;
  max-width: 22.5%;
}

.vf-wab-airport-select {
  width: 100%;
}

.vf-wab-value-line .vf-wab-value-box,
.vf-wab-measure-line .vf-wab-value-box,
.vf-wab-value-line .vf-wab-short-input,
.vf-wab-measure-line .vf-wab-short-input {
  width: 6rem;
  min-width: 6rem;
  max-width: 6rem;
}

.vf-wab-section-button {
  min-width: 14rem;
  min-height: 2.65rem;
}

.vf-wab-mini-button {
  min-height: 2rem;
  padding: 0.3rem 0.55rem;
  font-size: 0.88rem;
}

.vf-wab-compact-input,
.vf-wab-compact-select,
.vf-wab-cell-input,
.vf-wab-airport-field .vf-select,
.vf-wab-aircraft-select .vf-select,
.vf-wab-inline-select {
  min-height: 2.2rem;
  padding: 0.28rem 0.5rem;
  font-size: inherit;
  line-height: 1.3;
}

.vf-wab-compact-input,
.vf-wab-cell-input {
  min-width: 0;
  width: 100%;
}

.vf-wab-compact-select {
  max-width: 7.5rem;
}

.vf-wab-value-box--compact {
  min-width: 0;
  width: 100%;
}

.vf-wab-field-note {
  margin-top: 0.25rem;
  font-size: 0.86rem;
  line-height: 1.25;
  color: #5b6b7d;
}

.vf-wab-table {
  width: auto;
  min-width: 42rem;
  border: 1px solid #dce4ed;
  border-radius: 0.45rem;
  overflow: hidden;
  box-shadow: 0 0.25rem 0.75rem rgba(27, 53, 84, 0.05);
}

main .table.vf-wab-table > :not(caption) > * > * {
  text-align: right;
  vertical-align: middle;
}

main .table.vf-wab-table > :not(caption) > * > th:first-child {
  text-align: left;
  min-width: 14rem;
}

.vf-wab-row-static > *,
.vf-wab-row-fixed > *,
.vf-wab-row-input > * {
  background: inherit !important;
}

.vf-wab-row-summary > * {
  background: #eef4fb !important;
  font-weight: 600;
  border-top: 2px solid #d3deea;
}

.vf-wab-row-label-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.vf-wab-row-overweight > * {
  color: #c62828 !important;
}

.vf-wab-row-below-min > * {
  color: #c62828 !important;
}

.vf-wab-cell-input {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.vf-inline-delete-form {
  margin: 0;
}

main .vf-delete-button {
  min-width: 2rem;
  min-height: 2rem;
  padding: 0.2rem 0.35rem;
  border: 1px solid #ced9e5;
  border-radius: 0.3rem;
  background: #ffffff;
  color: #486d97;
  font-size: 1rem;
  line-height: 1;
}

main .vf-delete-button:hover,
main .vf-delete-button:focus-visible {
  background: #eef4fb;
  color: #c62828;
}

.app-footer {
  padding: 0.4rem 0;
  color: #666666;
  text-align: center;
  margin-top: auto;
}

.app-footer-meta {
  padding: 0.65rem 0;
}

.app-footer-links {
  padding: 0;
}

.vf-footer-links-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.vf-footer-links-list li {
  border-right: 1px solid #cccccc;
  min-height: 28px;
}

.vf-footer-links-list li:last-child {
  border-right: 0;
}

.vf-footer-links-list a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 0.6rem;
  font-size: 0.95rem;
  letter-spacing: 0.08rem;
  color: #cccccc;
}

.vf-footer-links-list a:hover {
  color: #ffffff;
}

@media (max-width: 900px) {
  body {
    font-size: 14px;
  }

  .vf-top-nav-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .vf-nav-list {
    justify-content: center;
  }

  .vf-user-nav {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    padding-top: 0;
  }

  .vf-nav-list a,
  .vf-nav-toggle {
    font-size: 0.9rem;
  }

  .vf-comparison-table-shell--wide {
    width: min(calc(100vw - 0.5rem), 100%);
  }

  .vf-landing-fees-table {
    font-size: 0.8rem;
  }

  main .table.vf-landing-fees-table > :not(caption) > * > * {
    padding: 0.24rem 0.34rem;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .vf-nav-list {
    width: 100%;
    flex-direction: column;
  }

  .vf-nav-list > li,
  .vf-footer-links-list li {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .vf-footer-links-list li {
    border-bottom-color: #3b3b3b;
  }

  .vf-nav-list a,
  .vf-nav-toggle,
  .vf-footer-links-list a {
    justify-content: center;
    text-align: center;
  }

  .vf-action-button,
  .vf-toolbar-actions,
  .vf-toolbar-field {
    width: 100%;
  }

  .vf-wab-grid,
  .vf-wab-form-row {
    grid-template-columns: 1fr;
  }

  .vf-wab-value-box,
  .vf-wab-short-input,
  .vf-wab-inline-select {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .vf-wab-value-line,
  .vf-wab-measure-line,
  .vf-wab-select-line {
    width: 100%;
  }

  .vf-wab-table {
    width: 100%;
    min-width: 0;
    border: 0;
    box-shadow: none;
  }

  .vf-wab-table thead {
    display: none;
  }

  .vf-wab-table,
  .vf-wab-table tbody,
  .vf-wab-table tr,
  .vf-wab-table th,
  .vf-wab-table td {
    display: block;
  }

  .vf-wab-table tr[hidden] {
    display: none !important;
  }

  main .table.vf-wab-table > tbody > tr {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem;
    margin-bottom: 0.65rem;
    padding: 0.65rem;
    border: 1px solid #dce4ed;
    border-radius: 0.4rem;
    background: #ffffff;
  }

  main .table.vf-wab-table > tbody > tr > th:first-child {
    grid-column: 1 / -1;
    min-width: 0;
    padding: 0 0 0.2rem;
    border: 0;
    font-weight: 600;
  }

  main .table.vf-wab-table > tbody > tr > td {
    min-width: 0;
    padding: 0;
    border: 0;
    text-align: left;
  }

  main .table.vf-wab-table > tbody > tr > td::before {
    display: block;
    margin-bottom: 0.2rem;
    color: #486d97;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.15;
  }

  main .table.vf-wab-table > tbody > tr > td:nth-child(2)::before {
    content: "Gewicht kg";
  }

  main .table.vf-wab-table > tbody > tr > td:nth-child(3)::before {
    content: "Hebelarm m";
  }

  main .table.vf-wab-table > tbody > tr > td:nth-child(4)::before {
    content: "Moment kgm";
  }

  .vf-wab-table .vf-wab-cell-input,
  .vf-wab-table .vf-wab-value-box {
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .vf-wab-row-label-action {
    align-items: flex-start;
  }

  .vf-wab-mini-button {
    flex: 0 0 auto;
    min-width: 4.6rem;
  }

  .vf-nav-sublist {
    position: static;
    min-width: 100%;
    border: 0;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.12);
  }

  .vf-nav-sublist a {
    padding-left: 1.75rem;
    font-size: 0.9rem;
  }
}
