.navbar-header {
  .navbar-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    &.is-text-branding {
      font-weight: 400 !important;
    }
  }
}
.page-title {
  display: flex;
  align-items: center;
  column-gap: 0.5rem; /* gap-x-2 */
  padding-right: 240px !important;
  svg {
    display: inline-block;
    vertical-align: middle;

    height: 24px; /* h-6 */
    width: 24px;  /* w-6 */
  }

  .tag.tag-secondary {
    background: rgb(236, 247, 248);
    color: rgb(68, 79, 93);
    border-radius: 4px;
    font-size: 12px;
    line-height: 18px;
    font-family: Inter, sans-serif;
    padding: 2px 8px;
  }
  .header-location-address {
    font-size: 12px !important;
  }
  .header-business-name {
    display: inline-block;
    width: fit-content;
    margin-left: 0 !important;

    font-size: 16px !important;        /* text-base */
    line-height: 24px !important;    /* leading-6 */
    font-weight: 700;       /* font-bold */

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: Inter, sans-serif;
    max-width: 45ch;
  }
}
.quick-links-container {
  .quick-links-nav {
    margin-right: 0 !important;
  }

  /* wrapper */
  .ql-wrapper {
    display: flex;
  }

  /* klikany obszar */
  .ql-icon-area {
    display: inline-block;
    position: relative;
  }

  /* button */
  .ql-button {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 !important;
    margin: 0;

    border: 1px solid transparent;
    border-radius: 4px;

    background: transparent;

    cursor: pointer;

    box-sizing: border-box;
    transition: background-color 120ms ease;
  }

  /* hover */
  .ql-icon-area:hover .ql-button {
    background: #ecf7f8;
  }

  /* focus */
  .ql-button:focus {
    outline: 1px solid #2b78a7;
    box-shadow: 0 0 8px rgba(43, 120, 167, 0.85);
  }

  /* active */
  .ql-button:active {
    background: #052527;
  }

  /* icon */
  .ql-icon {
    width: 24px;
    height: 24px;

    display: block !important;
    flex-shrink: 0;

    fill: #052527;
  }

  /* disabled */
  .ql-button:disabled {
    pointer-events: none;
  }

  .ql-button:disabled .ql-icon {
    fill: #8699a7;
  }
}
