@media screen {

  /**
   * Wine cellar table
   */
  .wine-cellar-table {
    border: 1px solid var(--light-grey);
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    font-size: 0.95em;
  }

  .wine-cellar-table thead th,
  .wine-cellar-table tfoot th,
  .wine-cellar-table tfoot td,
  .wine-cellar-table tfoot {
    position: -webkit-sticky;
    position: sticky;
    background-color: var(--table-head);
    color: var(--text-inverted);
    z-index: 1;
  }

  .wine-cellar-table thead th {
    top: 0;
  }

  .wine-cellar-table thead th {
    vertical-align: bottom;
  }

  .wine-cellar-table tfoot,
  .wine-cellar-table tfoot th,
  .wine-cellar-table tfoot td {
    bottom: 0;
  }

  .wine-cellar-table tfoot {
    font-weight: 600;
  }

  .wine-cellar-table thead a {
    color: inherit;
  }

  .wine-cellar-table th,
  .wine-cellar-table td {
    border: 0;
  }

  .wine-cellar-table th,
  .wine-cellar-table td {
    vertical-align: top;
    padding: 0.25em 0.5em;
  }

  .wine-cellar-table caption,
  .wine-cellar-table th {
    font-weight: 600;
  }

  /* Non white-space wrapped container */
  .wc-other {
    white-space: nowrap;
  }

  /**
   * Inventory table variant
   */
  .inventory-table input[type="number"] {
    width: auto;
    inline-size: 8ch;
  }
}
