:root {
    --bulma-body-background-color: #14161a;
}
/* Smooth image scale on card hover */
.tour-card:hover .tour-thumb-img {
  transform: scale(1.1);
  transition: transform 0.25s cubic-bezier(0.4,0.2,0.2,1);
}
.tour-thumb-img {
  transition: transform 0.25s cubic-bezier(0.4,0.2,0.2,1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bulma-body-background-color: #14161a;
  }
}

[data-theme="dark"], .theme-dark {
  --bulma-body-background-color: #14161a;
}
/* .tour-card-alt {
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(30,64,175,0.10), 0 1.5px 6px rgba(30,64,175,0.08);
  background: var(--bulma-body-background-color);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  height: 300px;
  color: #f3f4f6;
} */
.tour-card-alt:hover {
  box-shadow: 0 8px 32px rgba(37,99,235,0.18), 0 1.5px 12px rgba(30,64,175,0.13);
  transform: translateY(-4px) scale(1.025);
}
.tour-thumb-alt {
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  overflow: hidden;
  background: var(--bulma-body-background-color);
  height: 55%;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.tour-thumb-alt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
.tour-info {
  height: 45%;
  width: 100%;
  padding: 14px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  background: transparent;
}
.tour-title {
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 6px;
  text-align: center;
}
.tour-meta {
  font-size: 0.97rem;
  color: #cbd5e1;
  text-align: center;
  margin-bottom: 8px;
}

/* Fixed width for Publish/Unpublish buttons in tours admin */
.button.tour-publish, .button.tour-unpublish {
  min-width: 70px;
  max-width: 70px;
  text-align: center;
  justify-content: center;
}

/* Fixed width for status tag in tours admin */
.tag.tour-status {
  min-width: 60px;
  max-width: 60px;
  text-align: center;
  justify-content: center;
  display: inline-flex;
  align-items: center;
}

/* Override browser autofill background with Bulma dark */
.input {
  background: var(--bulma-body-background-color) !important;
  color: #fff !important;
}
.input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--bulma-body-background-color) inset !important;
  -webkit-text-fill-color: #fff !important;
}