:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #fbfcfe;
  --line: #d9e0ea;
  --text: #172338;
  --muted: #6b7a90;
  --brand: #0f4a8a;
  --brand-strong: #0b3b70;
  --ok: #147d3f;
  --warn: #b16000;
  --danger: #a02127;
  --radius: 14px;
  --shadow: 0 10px 26px rgba(25, 53, 90, 0.08);
  --max-width: 1120px;
  --content-gutter: 2rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.55;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin-inline: auto;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--brand-strong);
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  font-family: "Merriweather", Georgia, serif;
  line-height: 1.25;
  margin: 0 0 0.6rem;
  color: #10203a;
}

h1 {
  margin-bottom: 0.9rem;
}

p,
ul,
table {
  margin: 0 0 1rem;
}

.topbar {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  font-size: 0.93rem;
  position: relative;
  z-index: 1600;
}

.topbar-inner {
  min-height: 2.9rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.topbar-links {
  display: flex;
  width: 100%;
  gap: 0.85rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.topbar .topbar-links {
  margin-left: 0;
  margin-right: 0;
  padding-right: 0.9rem;
}

.topbar-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.lang-menu {
  position: relative;
}

.topbar .lang-menu {
  margin-left: auto;
}

.topbar .account-menu + .nav-toggle {
  margin-left: 0.35rem;
}

.lang-menu summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  border: 1px solid #c8d6ea;
  background: #ffffff;
  color: #21456e;
  font-weight: 600;
}

.lang-menu summary::-webkit-details-marker {
  display: none;
}

.lang-menu summary::after {
  content: "▾";
  font-size: 0.75rem;
  color: #466389;
}

.lang-menu[open] summary {
  background: #edf4ff;
  border-color: #acc3e0;
  color: #0f4a8a;
}

.lang-flag {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  border: 1px solid #c1cfe1;
  flex: 0 0 auto;
}

.lang-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 0.3rem);
  min-width: 145px;
  background: #ffffff;
  border: 1px solid #d3deee;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(20, 42, 74, 0.12);
  padding: 0.35rem;
  display: grid;
  gap: 0.2rem;
  z-index: 1700;
}

.lang-dropdown a {
  display: block;
  border-radius: 9px;
  padding: 0.5rem 0.6rem;
  color: #1f456e;
  text-decoration: none;
}

.lang-dropdown a:hover,
.lang-dropdown a:focus-visible {
  background: #edf4ff;
  color: #0f4a8a;
  text-decoration: none;
}

.topbar .container.topbar-inner {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-left: 0;
  padding-right: 0;
}

.user {
  color: var(--text);
}

.account-menu {
  position: relative;
  margin-left: 0;
}

.account-menu summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #c8d6ea;
  background: #ffffff;
  color: #21456e;
  font-weight: 600;
}

.account-menu summary::-webkit-details-marker {
  display: none;
}

.account-menu summary::after {
  content: "▾";
  font-size: 0.75rem;
  color: #466389;
}

.account-menu[open] summary {
  background: #edf4ff;
  border-color: #acc3e0;
  color: #0f4a8a;
}

.account-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 0.3rem);
  min-width: 180px;
  background: #ffffff;
  border: 1px solid #d3deee;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(20, 42, 74, 0.12);
  padding: 0.35rem;
  display: grid;
  gap: 0.2rem;
  z-index: 1700;
}

.account-dropdown a {
  display: block;
  border-radius: 9px;
  padding: 0.5rem 0.6rem;
  color: #1f456e;
  text-decoration: none;
}

.account-dropdown a:hover,
.account-dropdown a:focus-visible {
  background: #edf4ff;
  color: #0f4a8a;
  text-decoration: none;
}

.site-header {
  background: linear-gradient(180deg, #ffffff 0, #f9fbff 100%);
  border-bottom: 1px solid #e5ebf3;
}

.header-inner {
  min-height: 6.6rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  margin-left: 0;
}

.brand:hover,
.brand:focus-visible {
  text-decoration: none;
}

.brand-logo {
  width: 96px;
  height: 96px;
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font: 700 1.35rem/1.15 "Merriweather", Georgia, serif;
  color: #11335f;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 0.2rem;
}

.mainnav {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(217, 224, 234, 0.9);
  backdrop-filter: blur(4px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
}

.mainnav .container {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-left: 0;
  padding-right: 1rem;
}

.mainnav-inner {
  min-height: 5.2rem;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.mainnav .nav-brand {
  order: 0;
  position: static;
  margin-left: 0.45rem;
  margin-right: 0.8rem;
  padding-left: 0;
  padding-right: 0;
  flex: 0 0 auto;
}
.mainnav .nav-links {
  position: fixed;
  left: var(--menu-panel-left, calc(100vw - 348px));
  top: var(--menu-panel-top, 72px);
  z-index: 1300;
  min-width: 240px;
  width: min(92vw, 340px);
  padding: 0.45rem;
  border: 1px solid #c7d7ec;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 24px rgba(20, 42, 74, 0.14);
  display: none;
  grid-template-columns: 1fr;
  gap: 0.35rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: 3.2rem;
  min-height: 3.2rem;
  padding: 0;
  border-radius: 10px;
  border: 1px solid #b8cce7;
  background: #ffffff;
  color: #1f456e;
  cursor: pointer;
}

.nav-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.nav-toggle-icon span {
  width: 100%;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: #edf4ff;
  border-color: #94b1d8;
  color: #0f4a8a;
}

.mainnav.menu-open .nav-toggle {
  background: #edf4ff;
  color: #0f4a8a;
  border-color: #94b1d8;
}

.mainnav.menu-open .nav-links {
  display: grid;
}

.mainnav.menu-open .nav-toggle-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mainnav.menu-open .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.mainnav.menu-open .nav-toggle-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mainnav .nav-tools {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
  margin-left: auto;
  flex: 0 0 auto;
}

.mainnav .lang-dropdown,
.mainnav .account-dropdown {
  left: auto;
  right: 0;
  transform: none;
}

.mainnav .nav-brand .brand-logo {
  width: 76px;
  height: 76px;
}

.mainnav .nav-brand .brand-title {
  font-size: 1.02rem;
}

.mainnav .nav-brand .brand-sub {
  font-size: 0.82rem;
}

.mainnav a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #2b456b;
  font-weight: 600;
  font-size: 1.2rem;
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  min-height: 3rem;
  width: auto;
}

.mainnav .nav-links > a {
  font-size: 1.06rem;
  padding: 0.55rem 0.7rem;
  min-height: 2.4rem;
  width: 100%;
  justify-content: flex-start;
  border: 1px solid #d8e3f2;
  background: #ffffff;
}

.mainnav a:hover,
.mainnav a:focus-visible {
  color: #0f4a8a;
  background: #eef4fc;
  text-decoration: none;
}

.mainnav a.admin {
  background: #edf4ff;
  color: #0f4a8a;
}

.promo-gallery {
  margin-top: 0;
  display: block;
  width: 100%;
}

.promo-stage {
  --nav-overlay-height: 96px;
  position: relative;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: #ffffff;
  box-shadow: none;
}

.promo-main {
  display: block;
  width: 100%;
  height: min(58vw, 560px);
  min-height: max(360px, calc(var(--nav-overlay-height) * 2));
  object-fit: cover;
}

.promo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid #b7c9e2;
  background: rgba(255, 255, 255, 0.9);
  color: #0f4a8a;
  font-size: 2rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 11;
}

.promo-nav.prev {
  left: 0.75rem;
}

.promo-nav.next {
  right: 0.75rem;
}

.promo-nav:hover,
.promo-nav:focus-visible {
  background: #ffffff;
  border-color: #89a9d3;
}

.main-content {
  padding-block: 2rem 2.8rem;
}

/* Make list-heavy content areas use full available screen width. */
.main-content.container {
  max-width: none;
  width: calc(100% - var(--content-gutter));
}

.main-content > section,
.main-content > article,
.main-content > form,
.main-content > .two-col,
.main-content > .book-detail,
.main-content > .stats,
.main-content > .admin-actions,
.main-content > table,
.main-content > .news-list,
.main-content > .grid,
.main-content > .pagination {
  margin-bottom: 1.45rem;
}

.hero {
  background: linear-gradient(180deg, #ffffff, #f7faff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.55rem;
}

.search {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1rem;
}

.input,
input[type="search"],
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.62rem 0.74rem;
  border: 1px solid #cdd7e6;
  border-radius: 10px;
  color: var(--text);
  background: #ffffff;
  font: inherit;
}

.search input[type="search"],
.search select {
  flex: 1 1 210px;
  width: auto;
}

.search input[type="search"] {
  font-size: 1.08rem;
}

.helper-hint {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.12rem;
  font-weight: 600;
}

.book-helper-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 1rem;
  align-items: start;
}

.book-helper-side {
  border: 1px solid #d6e1ef;
  border-radius: 10px;
  padding: 0.6rem;
  background: #f8fbff;
}

.book-helper-title {
  display: block;
  margin-bottom: 0.4rem;
  color: #123a6a;
}

.book-helper-combo {
  width: 100%;
  min-height: 220px;
  border: 1px solid #c7d8ee;
  border-radius: 9px;
  padding: 0.35rem;
  background: #ffffff;
  color: #173153;
  font-size: 0.98rem;
}

.input:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(15, 74, 138, 0.12);
  outline-offset: 1px;
  border-color: #89a9d3;
}

button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c9d6ea;
  background: #ffffff;
  color: #21456e;
  border-radius: 10px;
  font-weight: 600;
  padding: 0.55rem 0.92rem;
  cursor: pointer;
  text-decoration: none;
}

button:hover,
button:focus-visible,
.btn:hover,
.btn:focus-visible {
  background: #edf4ff;
  border-color: #acc3e0;
  color: #0f4a8a;
  text-decoration: none;
}

.btn.primary,
button.primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #ffffff;
}

.btn.primary:hover,
.btn.primary:focus-visible,
button.primary:hover,
button.primary:focus-visible {
  background: var(--brand-strong);
  border-color: var(--brand-strong);
  color: #ffffff;
}

button[disabled],
.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem;
}

.form.narrow {
  max-width: 500px;
}

.form p {
  margin: 0 0 0.9rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.95rem;
}

.cover {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #dce6f3;
  background: #f4f7fc;
  margin-bottom: 0.75rem;
}

.cover-placeholder {
  display: grid;
  place-items: center;
  font-size: 2.1rem;
  color: #0b3b70;
}

.cover-placeholder.large {
  max-width: 280px;
}

.tag {
  display: inline-block;
  border-radius: 999px;
  padding: 0.22rem 0.62rem;
  font-size: 0.82rem;
  border: 1px solid #bdd0ea;
  background: #eef5ff;
  color: #1d4f87;
}

.book-detail {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: 1.1rem;
}

.book-cover img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #d7e3f4;
}

.news-list {
  padding-left: 1.1rem;
}

.news-list.big {
  list-style: none;
  padding: 0;
}

.news-list.big li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  margin-bottom: 0.8rem;
}

.post-body {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.muted {
  color: var(--muted);
}

.ok {
  color: var(--ok);
  font-weight: 700;
}

.warn {
  color: var(--warn);
  font-weight: 700;
}

.error {
  color: var(--danger);
  font-size: 0.93rem;
}

.data,
.hours {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.data th,
.data td,
.hours th,
.hours td {
  border-bottom: 1px solid #e2e8f3;
  padding: 0.68rem 0.74rem;
  text-align: left;
  vertical-align: top;
}

.data thead th {
  background: #f5f9ff;
  color: #1f3f68;
}

.data tbody tr:nth-child(even),
.hours tr:nth-child(even) {
  background: #fbfdff;
}

.btn-link {
  border: 0;
  background: transparent;
  color: #aa2a31;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.btn-link:hover,
.btn-link:focus-visible {
  text-decoration: underline;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.8rem;
}

.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.95rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat .num {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f4a8a;
}

.admin-actions {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.95rem 1.2rem;
}

.admin-actions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.admin-actions-grid .btn {
  width: 100%;
  justify-content: flex-start;
}

.pagination {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  align-items: center;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.65rem;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  gap: 0.95rem;
}

.two-col > section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.flashes {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.flash {
  border-radius: 10px;
  border: 1px solid #d8e4f5;
  background: #f6faff;
  color: #1d4b80;
  padding: 0.7rem 0.82rem;
  margin-bottom: 0.5rem;
}

.flash-error {
  border-color: #f2cccf;
  background: #fff5f6;
  color: #8f2229;
}

.flash-success {
  border-color: #cde7d5;
  background: #f3fbf6;
  color: #1c6f3f;
}

.flash-warning {
  border-color: #f1dcc2;
  background: #fff9f2;
  color: #8a5510;
}

.site-footer {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  background: #fbfcff;
}

.footer-grid {
  padding-block: 1.35rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
}

.footer-grid h4 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.footer-bottom {
  border-top: 1px solid #e1e8f2;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-bottom .container {
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 0.8rem;
}

.footer-contact-inline {
  white-space: nowrap;
  text-align: right;
}

@media (max-width: 900px) {
  .book-detail,
  .two-col,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mainnav-inner {
    flex-wrap: nowrap;
    align-items: center;
    padding-block: 0.35rem;
  }

  .mainnav .nav-links {
    width: min(94vw, 330px);
  }

  .mainnav .nav-tools {
    order: 2;
    margin-left: auto;
  }

  .promo-gallery {
    margin-top: 0;
  }

  .book-helper-layout {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    justify-content: space-between;
    padding: 0.35rem 0.75rem;
    text-align: left;
  }

  .topbar .topbar-links {
    justify-content: space-between;
    gap: 0.55rem;
  }

  .lang-dropdown {
    left: auto;
    right: 0;
    transform: none;
  }

  .account-menu {
    margin-left: 0;
  }

  .account-dropdown {
    left: auto;
    right: 0;
    transform: none;
  }

  .mainnav .nav-links > a {
    justify-content: flex-start;
  }

  .mainnav .lang-dropdown,
  .mainnav .account-dropdown {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  :root {
    --content-gutter: 1.1rem;
  }

  .container {
    width: min(var(--max-width), calc(100% - 1.1rem));
  }

  .mainnav .container {
    width: 100%;
    padding-left: 0;
    padding-right: 0.55rem;
  }

  .topbar-inner {
    min-height: auto;
    gap: 0.5rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .topbar .topbar-links {
    flex-direction: row;
    gap: 0.5rem;
    width: 100%;
    align-items: center;
    justify-content: space-between;
  }

  .topbar .topbar-links > span {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.25rem;
  }

  .lang-menu summary {
    font-size: 0.9rem;
    padding: 0.3rem 0.55rem;
  }

  .account-menu summary {
    font-size: 0.9rem;
    padding: 0.34rem 0.62rem;
  }

  .account-dropdown {
    min-width: 165px;
  }

  .mainnav-inner {
    min-height: auto;
    padding-block: 0.45rem;
  }

  .mainnav .nav-brand {
    margin-left: 0.35rem;
    margin-right: 0.35rem;
    gap: 0.6rem;
  }

  .nav-toggle {
    min-height: 2.9rem;
    width: 3rem;
  }

  .topbar .nav-toggle {
    min-height: 2.4rem;
    width: 2.7rem;
  }

  .mainnav .nav-links {
    width: min(95vw, 300px);
    gap: 0.3rem;
  }

  .mainnav .nav-brand .brand-logo {
    width: 52px;
    height: 52px;
  }

  .mainnav .nav-brand .brand-title {
    font-size: 0.95rem;
  }

  .mainnav .nav-brand .brand-sub {
    font-size: 0.78rem;
  }

  .mainnav a {
    font-size: 1rem;
    min-height: 2.4rem;
    padding: 0.5rem 0.65rem;
  }

  .mainnav .nav-links > a {
    font-size: 0.92rem;
    min-height: 2.2rem;
    padding: 0.45rem 0.5rem;
  }

  .promo-main {
    height: clamp(250px, 62vw, 420px);
    min-height: max(250px, calc(var(--nav-overlay-height) * 2));
  }

  .promo-nav {
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
  }

  .main-content {
    padding-block: 1rem 1.75rem;
  }

  .hero,
  .form,
  .card,
  .book-detail,
  .admin-actions,
  .news-list.big li,
  .post-body,
  .two-col > section {
    padding: 0.85rem;
  }

  .search {
    gap: 0.5rem;
  }

  .grid,
  .stats,
  .two-col,
  .book-detail {
    gap: 0.75rem;
  }

  .data,
  .hours {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .data th,
  .data td,
  .hours th,
  .hours td {
    padding: 0.55rem 0.6rem;
    white-space: nowrap;
  }

  .pagination {
    flex-wrap: wrap;
  }

  .footer-bottom .container {
    min-height: auto;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding-block: 0.7rem;
  }

  .footer-contact-inline {
    white-space: normal;
    text-align: center;
  }
}
