/* Custom utility classes and component styles */

/* Navigation toggle styles */
@media (max-width: 1023px) {
  #nav-menu {
    margin-top: 1px;
    padding-top: 10px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    background-color: #191919;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 50;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease;
    border-bottom: 1px solid var(--color-darkmode-border);
    border-top: 1px solid var(--color-darkmode-border);
  }

  input#nav-toggle:checked~#nav-menu {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
  }
}

@media (min-width: 1024px) {
  #nav-menu {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    width: auto;
    max-height: none;
    background-color: transparent;
    transition: none;
    overflow: visible;
    display: flex !important;
  }
}

/* Mobile menu shadow effect */
@media (max-width: 1023px) {
  input#nav-toggle:checked~#nav-menu {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
}

/* Blur overlay for mobile menu */
.nav-blur-overlay {
  position: fixed;
  top: 0px;
  /* Start below header */
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 49;
  pointer-events: none;
}

input#nav-toggle:checked~.nav-blur-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Ensure hamburger toggle stays above everything */
label[for="nav-toggle"]:first-of-type {
  position: relative;
  z-index: 51;
}

@media (min-width: 1024px) {
  .nav-blur-overlay {
    display: none;
  }
}

/* Hamburger icon animation */
#show-button,
#hide-button {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

input#nav-toggle:checked+label #show-button {
  transform: rotate(180deg);
  opacity: 0;
}

input#nav-toggle:checked+label #hide-button {
  transform: rotate(0deg);
  opacity: 1;
}

#hide-button {
  position: absolute;
  transform: rotate(-180deg);
  opacity: 0;
}

/* Mobile menu item animations */
@media (max-width: 1023px) {
  #nav-menu .nav-item {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  input#nav-toggle:checked~#nav-menu .nav-item {
    opacity: 1;
    transform: translateY(0);
  }

  input#nav-toggle:checked~#nav-menu .nav-item:nth-child(1) {
    transition-delay: 0.05s;
  }

  input#nav-toggle:checked~#nav-menu .nav-item:nth-child(2) {
    transition-delay: 0.1s;
  }

  input#nav-toggle:checked~#nav-menu .nav-item:nth-child(3) {
    transition-delay: 0.15s;
  }

  input#nav-toggle:checked~#nav-menu .nav-item:nth-child(4) {
    transition-delay: 0.2s;
  }

  input#nav-toggle:checked~#nav-menu .nav-item:nth-child(5) {
    transition-delay: 0.25s;
  }

  input#nav-toggle:checked~#nav-menu .nav-item:nth-child(6) {
    transition-delay: 0.3s;
  }

  input#nav-toggle:checked~#nav-menu .nav-item:nth-child(7) {
    transition-delay: 0.35s;
  }

  input#nav-toggle:checked~#nav-menu .nav-item:nth-child(8) {
    transition-delay: 0.4s;
  }

  input#nav-toggle:checked~#nav-menu .nav-item:nth-child(9) {
    transition-delay: 0.45s;
  }

  input#nav-toggle:checked~#nav-menu .nav-item:nth-child(10) {
    transition-delay: 0.5s;
  }
}

/* Search functionality styles */
.search-wrapper {
  position: relative;
  z-index: 1;
}

.search-wrapper svg {
  display: inline-block;
  background-color: transparent;
}

.search-wrapper-header {
  padding: 14px;
  position: relative;
}

.search-wrapper-header input {
  border: 1px solid #ddd;
  width: 100%;
  border-radius: 4px;
  height: 52px;
  padding: 0 15px 0 40px;
  transition: .25s;
}

.search-wrapper-header input:focus {
  border-color: var(--color-primary);
  box-shadow: none;
  outline: none;
}

.search-wrapper-header label {
  position: absolute;
  left: 28px;
  top: calc(50% - 13px);
}

.search-wrapper-header label .search-reset {
  display: none;
  transition: .1s;
}

.search-wrapper-header label .search-reset:hover {
  cursor: pointer;
  color: #fb5c5c;
}

.search-result-empty {
  display: block;
  text-align: center;
  padding: 32px 0;
  cursor: text;
  user-select: none;
}

.search-result mark {
  padding: 0;
  border-radius: 2px;
}

.search-result:not(:empty)+.search-result-empty {
  display: none;
}

.search-not-found {
  text-align: center;
}

.search-not-found svg {
  margin-bottom: 16px;
}

.search-not-found p {
  margin-bottom: 0;
}

.search-result-item {
  position: relative;
  display: block;
  padding: 16px;
  border-radius: 4px;
  border: 1px solid #eee;
  background-color: #fff;
  transition: 0s;
  margin-bottom: 4px;
  display: flex;
  align-items: flex-start;
}

.search-result-item div:empty,
.search-result-item .search-result-item-description:empty {
  display: none;
}

.search-result-item-image {
  flex-shrink: 0;
}

.search-result-item-image:empty {
  display: none;
}

.search-result-item-body {
  flex-grow: 1;
}

.search-result-item>div>img {
  border-radius: 4px;
  max-height: 400px;
  width: 100%;
  object-fit: cover;
}

.search-page .search-result-item>div>img {
  object-fit: cover;
  max-height: 250px;
  width: 100%;
}

.search-result-item:focus,
.search-result-item.search-item-selected,
.search-result-item:hover {
  background-color: var(--color-primary);
}

.search-result-item:focus *,
.search-result-item.search-item-selected *,
.search-result-item:hover * {
  color: #fff;
}

.search-result-item:focus mark,
.search-result-item.search-item-selected mark,
.search-result-item:hover mark {
  background-color: #fef08a;
  color: #060606;
}

.search-result-item [data-result-item] u {
  color: var(--color-primary);
}

.search-result-item .hidden {
  display: none;
}

.search-result-group-title {
  padding: 0 12px;
  display: inline-block;
  margin-bottom: 5px;
  margin-top: 15px;
  font-size: 18px;
}

.search-result-item-title {
  transition: 0s;
  font-size: 18px;
  color: #000;
  margin-bottom: 0;
  line-height: 1.35;
  font-weight: 700;
}

.search-result-item-title::before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  content: "";
}

.search-result-item-content {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 6px 0;
}

.search-result-item-description {
  font-size: 90%;
  margin-top: 6px;
  margin-bottom: 4px;
}

.search-result-item-content:empty {
  display: none;
}

.search-result-item-taxonomies {
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  align-items: center;
}

.search-result-item-taxonomies>div {
  margin-right: 12px;
  color: #999;
}

.search-result-item-taxonomies>div svg {
  margin-right: 4px;
}

.search-wrapper-footer {
  color: #999;
  font-size: 12px;
  padding: 8px 14px;
  user-select: none;
  line-height: 1;
  display: flex;
  align-items: center;
}

.search-wrapper-footer kbd {
  color: #777;
  background-color: #eee;
  font-size: 12px;
  border-radius: 3px;
  margin-right: 3px;
  padding: 2px 4px;
  line-height: 1;
  text-align: center;
  display: inline-block;
}

.search-wrapper-footer span:not(:last-child) {
  margin-right: 16px;
}

.search-wrapper-footer span:last-child {
  margin-left: auto;
}

.search-wrapper-footer .search-result-info:empty {
  display: none;
}

.search-wrapper-footer .search-result-info {
  margin-left: -3px;
}

.search-wrapper-footer .search-result-info em {
  color: #000;
  font-style: normal;
  padding: 0 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Search modal styles */
.search-modal {
  position: fixed;
  height: 100%;
  width: 100%;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
}

.search-modal.show {
  opacity: 1;
  visibility: visible;
}

.search-modal-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .5);
}

.search-modal .search-wrapper {
  width: 660px;
  max-width: 96%;
  margin: 100px auto;
  border-radius: 4px;
  background-color: #fff;
}

.search-modal .search-wrapper-body {
  max-height: calc(100vh - 350px);
  padding: 14px;
  overflow-y: auto;
  background-color: #f5f6f7;
  box-shadow: inset 0 2px 18px #ddd;
  border-radius: 4px;
}

.search-modal .search-result-group:first-child .search-result-group-title:not(:empty) {
  margin-top: -15px;
}

.search-modal .search-result-item a>div {
  margin-right: 16px;
}

.search-modal .search-result-item-image {
  margin-right: 15px;
}

.search-modal .search-result-item-image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

@media(max-width:576px) {
  .search-modal .search-result-item-image img {
    width: 60px;
    height: 60px;
  }

  .search-wrapper-footer {
    display: none;
  }
}

/* Dark mode search styles */
.dark .search-modal .search-wrapper {
  background-color: #1c1c1c;
}

.dark .search-modal .search-wrapper-header input {
  color: #fff;
  background-color: #222;
  border-color: #535353;
}

.dark .search-modal .search-wrapper-header input:focus {
  border-color: #fff;
}

.dark .search-modal .search-wrapper-body {
  background-color: #222;
  box-shadow: none;
}

.dark .search-modal .search-result-item {
  border-color: #3e3e3e;
  background-color: #1c1c1c;
}

.dark .search-modal .search-result-item:focus,
.dark .search-modal .search-result-item.search-item-selected,
.dark .search-modal .search-result-item:hover {
  background-color: #060606;
}

.dark .search-modal .search-result-item .search-result-item-title {
  color: #fff;
}

.dark .search-wrapper-footer kbd {
  background-color: #3e3e3e;
  color: #ccc;
}

.dark .search-wrapper-footer .search-result-info em {
  color: #fff;
}

/* Search page styles */
.search-page .search-wrapper {
  padding: 100px 0;
}

.search-page .search-wrapper-header,
.search-page .search-wrapper-footer {
  width: 660px;
  max-width: 96%;
  margin: 0 auto;
}

.search-page .search-wrapper-footer {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 60px;
}

.search-page .search-wrapper-body {
  padding: 0 16px;
}

.search-page .search-result-group {
  display: flex;
  flex-wrap: wrap;
}

.search-page .search-result-item {
  margin-right: -15px;
  margin-left: -15px;
}

.search-page .search-result-group>p,
.search-page .search-result-item {
  padding-right: 15px !important;
  padding-left: 15px !important;
}

.search-page .search-result-group>p {
  width: 100%;
}

.search-page .search-result-item {
  flex: none;
  width: calc(100% - (4 * 4px));
  display: block;
  padding-top: 15px !important;
  padding-bottom: 15px !important;
  margin: 0 8px 16px;
}

.search-page .search-result-item .search-result-item-image {
  margin-bottom: 10px;
}

.search-page .search-result-group-title {
  font-size: 22px;
  font-weight: 700;
}

.search-page .search-result-info {
  display: block;
  text-align: center;
}

.search-page .search-wrapper-header input {
  padding: 0 20px;
}

@media(min-width:576px) {
  .search-page .search-result-item {
    width: calc(50% - (4 * 4px));
  }
}

@media(max-width:576px) {
  .search-wrapper .search-wrapper-footer span:not(.search-result-info) {
    display: none;
  }
}

@media(min-width:768px) {
  .search-page .search-result-item {
    width: calc(33.3333333333% - (4 * 4px));
  }
}

@media(min-width:992px) {
  .search-page .search-result-item {
    width: calc(25% - (4 * 4px));
  }
}

.dark .search-page .search-wrapper-header input {
  color: #fff;
  background-color: #222;
  border-color: #535353;
}

.dark .search-page .search-wrapper-header input:focus {
  border-color: #fff;
}

.dark .search-page .search-result-item {
  border-color: #3e3e3e;
  background-color: #1c1c1c;
}

.dark .search-page .search-result-item:focus,
.dark .search-page .search-result-item.search-item-selected,
.dark .search-page .search-result-item:hover {
  background-color: #060606;
}

.dark .search-page .search-result-item-title {
  color: #fff;
}

/* Share button styles */
.share-link {
  border-radius: .25rem;
  transition: 25ms ease-out;
  height: 2.5em;
  width: 2.5em;
  line-height: 2.5em;
  text-align: center;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: #fff;
  margin: .5em;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}

.share-icon {
  fill: #fff;
  stroke: none;
  display: block;
  height: 100%;
}

.share-icon svg {
  width: 1em;
  height: 100%;
  margin: auto;
}

.share-pinterest {
  background-color: #bd081c;
}

.share-pinterest:hover {
  background-color: #8c0615;
}

.share-facebook {
  background-color: #3b5998;
}

.share-facebook:hover {
  background-color: #2d4373;
}

.share-tumblr {
  background-color: #35465c;
}

.share-tumblr:hover {
  background-color: #222d3c;
}

.share-reddit {
  background-color: #5f99cf;
}

.share-reddit:hover {
  background-color: #3a80c1;
}

.share-linkedin {
  background-color: #0077b5;
}

.share-linkedin:hover {
  background-color: #046293;
}

.share-vk {
  background-color: #507299;
}

.share-vk:hover {
  background-color: #43648c;
}

.share-x {
  background-color: #000;
}

.share-x:hover {
  background-color: #000;
}

.share-email {
  background-color: #777;
}

.share-email:hover {
  background-color: #5e5e5e;
}

.share-whatsapp {
  background-color: #25d366;
}

.share-whatsapp:hover {
  background-color: #1da851;
}

.share-telegram {
  background-color: #54a9eb;
}

.share-telegram:hover {
  background-color: #4b97d1;
}

.share-copy {
  background-color: #28a745;
}

.share-copy:hover {
  background-color: #218838;
}

.share-fediverse {
  background-color: #6364ff;
}

.share-fediverse:hover {
  background-color: #4b4ccf;
}

.fediverse-share {
  position: relative;
  display: inline-block;
}

.fediverse-input-wrapper {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8px;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
  padding: 8px;
  display: none;
  z-index: 10;
  white-space: nowrap;
}

.dark .fediverse-input-wrapper {
  background: #2d2d2d;
  border-color: #444;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .5);
}

.fediverse-input {
  width: 200px;
  padding: 6px 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  margin-right: 8px;
}

.fediverse-input:focus {
  outline: none;
  border-color: #4b4ccf;
}

.fediverse-check-button {
  padding: 7px 12px;
  background-color: #4b4ccf;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.fediverse-check-button:hover {
  background-color: #4b4ccf;
}

/* Table of content styles */
.table-of-content {
  margin: 1rem 0 1.5rem;
}

.table-of-content summary {
  font-size: 18px;
  color: #fff;
  background-color: #555;
  padding: 5px 20px;
  margin-bottom: 0 !important;
}

.table-of-content ul li:before {
  display: none;
}

#TableOfContents {
  padding: 10px;
  background-color: #f7f7f7;
}

#TableOfContents li,
#TableOfContents a {
  color: #333 !important;
}

#TableOfContents a {
  text-decoration: none;
}

#TableOfContents a:hover {
  text-decoration: underline;
}

.content .table-of-content ul li,
.content .table-of-content ol li {
  margin-bottom: 6px !important;
}

.dark #TableOfContents {
  background-color: #333;
}

.dark #TableOfContents li,
.dark #TableOfContents a {
  color: #fff !important;
}

/* Tab styles */
.tab-nav {
  list-style: none;
  padding: 0;
  margin: 0 !important;
  display: flex;
  border-bottom: 1px solid #aaa;
  overflow-x: auto;
}

.tab-nav::-webkit-scrollbar {
  width: 2px;
}

.tab-nav-item {
  padding: .5rem 1rem !important;
  cursor: pointer;
  opacity: .8;
  margin: 0 !important;
  white-space: nowrap;
}

.tab-nav-item::before {
  display: none !important;
}

.tab-nav-item.active {
  border-bottom: 3px solid #aaa;
  opacity: 1;
}

.tab-content .tab-content-panel {
  display: none;
  padding: 1rem;
}

.tab-content .tab-content-panel p {
  margin-bottom: 0 !important;
}

.tab-content .tab-content-panel.active {
  display: block;
}

/* Accordion styles */
.accordion {
  border: 1px solid #ccc;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  font-size: 1.1rem;
  width: 100%;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.accordion-icon {
  width: .78em;
  height: .78em;
  transform: rotate(-90deg);
  transition: transform .2s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
}

.accordion.active .accordion-icon {
  transform: rotate(0);
}

.accordion.active .accordion-content {
  max-height: max-content;
}

/* Modal styles */
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  display: none;
  height: 100%;
  width: 100%;
  overflow: auto;
}

.modal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  display: none;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, .4);
}

.modal-content {
  position: relative;
  top: 50%;
  z-index: 50;
  transform: translateY(-50%);
  background-color: #fff;
  border-radius: .5rem;
  padding: 2rem;
  max-width: 90%;
  margin: 0 auto;
}

.modal-close {
  position: absolute;
  top: .5rem;
  right: .5rem;
  height: 2rem;
  width: 2rem;
  background-color: #f2f2f2;
  color: #000;
  border-radius: 50%;
  text-align: center;
  line-height: 2rem;
}

/* Notice styles */
.notice {
  margin-bottom: 1.5rem;
  border: 1px solid;
  padding: 1.5rem;
  border-color: initial;
}

.notice-head {
  display: flex;
  align-items: center;
}

.notice-head svg {
  margin-right: .75rem;
}

.notice-head p {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  line-height: 1;
}

.notice-body {
  margin-top: .75rem;
}

.notice-body p {
  margin: 0;
}

.notice.note {
  color: #293df2;
  background-color: rgba(41, 61, 242, .15);
}

.notice.abstract {
  color: #0ca68c;
  background-color: rgba(12, 166, 140, .15);
}

.notice.info {
  color: #09c3ed;
  background-color: rgba(9, 195, 237, .15);
}

.notice.todo {
  color: #8d05a8;
  background-color: rgba(141, 5, 168, .15);
}

.notice.tip {
  color: #19cfb0;
  background-color: rgba(25, 207, 176, .15);
}

.notice.success {
  color: #04d904;
  background-color: rgba(4, 217, 4, .15);
}

.notice.question {
  color: #e38902;
  background-color: rgba(227, 137, 2, .15);
}

.notice.warning {
  color: #e38902;
  background-color: rgba(227, 137, 2, .15);
}

.notice.failure {
  color: #e31a00;
  background-color: rgba(227, 26, 0, .15);
}

.notice.danger {
  color: #e31a00;
  background-color: rgba(227, 26, 0, .15);
}

.notice.bug {
  color: #e31a00;
  background-color: rgba(227, 26, 0, .15);
}

.notice.example {
  color: #b83acf;
  background-color: rgba(184, 54, 207, .15);
}

.notice.quote {
  color: #918e91;
  background-color: rgba(145, 142, 145, .15);
}

.dark .notice-head p {
  color: #d1d5db;
}

.table-of-content {
  overflow: hidden;
  border-radius: .25rem;
}

/* Share icons and enhanced styles */
.share-icons .share-link {
  height: calc(var(--spacing) * 9);
  width: calc(var(--spacing) * 9);
  border-radius: 0.25rem;
  --tw-leading: calc(var(--spacing) * 9);
  line-height: calc(var(--spacing) * 9);
  background-color: var(--color-primary);
}

.share-icons .share-link:hover {
  @media (hover: hover) {
    background-color: var(--color-primary);
  }
}

.share-icons .share-link:where(.dark, .dark *) {
  background-color: var(--color-darkmode-primary);
}

.share-icons .share-link:where(.dark, .dark *):hover {
  @media (hover: hover) {
    background-color: var(--color-darkmode-primary);
  }
}

.share-icons .share-icon svg:where(.dark, .dark *) {
  fill: var(--color-dark);
}

/* Enhanced component styles */
.notice {
  border-radius: var(--radius-lg);
}

.tab {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border-style: var(--tw-border-style);
  border-width: 1px;
  border-color: var(--color-border);
}

.tab:where(.dark, .dark *) {
  border-color: var(--color-darkmode-border);
}

.tab .tab-content .tab-panel {
  padding-inline: calc(var(--spacing) * 4);
  padding-top: calc(var(--spacing) * 0) !important;
}

.tab-nav {
  border-color: var(--color-border);
  background-color: var(--color-light);
  padding-left: calc(var(--spacing) * 4);
}

.tab-nav:where(.dark, .dark *) {
  border-color: var(--color-darkmode-border);
}

.tab-nav:where(.dark, .dark *) {
  background-color: var(--color-darkmode-light);
}

.tab-nav .tab-nav-item {
  padding-inline: calc(var(--spacing) * 8);
  font-size: var(--text-lg) !important;
  line-height: var(--tw-leading, var(--text-lg--line-height)) !important;
  color: var(--color-text-dark);
}

.tab-nav .tab-nav-item:where(.dark, .dark *) {
  color: var(--color-darkmode-text-dark);
}

.tab-nav .tab-nav-item.active {
  border-color: var(--color-dark);
}

.tab-nav .tab-nav-item.active:where(.dark, .dark *) {
  border-color: var(--color-darkmode-primary);
}

.accordion {
  margin-bottom: calc(var(--spacing) * 6);
  overflow: hidden;
  border-radius: var(--radius-lg);
  border-style: var(--tw-border-style);
  border-width: 1px;
  border-color: var(--color-border);
  background-color: var(--color-light);
}

.accordion:where(.dark, .dark *) {
  border-color: var(--color-darkmode-border);
}

.accordion:where(.dark, .dark *) {
  background-color: var(--color-darkmode-light);
}

.accordion .accordion-header {
  color: var(--color-text-dark);
}

.accordion .accordion-header:where(.dark, .dark *) {
  color: var(--color-darkmode-text-dark);
}

.cookie-box {
  border-radius: var(--radius-lg) !important;
}

.gallery-slider {
  margin-left: calc(var(--spacing) * 0) !important;
}