/* ===== APP WRAPPER: force vertical stack ===== */
#app.application,
.v-application {
  display: flex !important;
  flex-direction: column !important;
  min-height: 100vh !important;
}
main.v-content {
  flex: 1 1 auto !important;
  width: 100% !important;
}
footer {
  flex-shrink: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
nav {
  width: 100% !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
}
html, body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* ===== HERO SECTION: full width, two equal columns ===== */
#hero_section {
  width: 100% !important;
  max-width: none !important;
  padding: 0 24px !important;
  box-sizing: border-box !important;
}
#hero_section .layout.row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  align-items: flex-start !important;
  margin: 0 !important;
  gap: 24px !important;
  width: 100% !important;
}

/* ===== FOOTER: spaced out links ===== */
footer > div > div:first-child {
  gap: 32px !important;
  padding: 8px 0 !important;
}
footer a {
  font-size: 15px !important;
}

/* Remove any unwanted borders/lines */
.search > .v-card,
#search-section > .v-card {
  border: none !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

/* Remove dark vertical line from search section */
#search-section > .v-card,
.search > .v-card,
#search-section .v-card {
  border-left: none !important;
  box-shadow: none !important;
}
#search-section .v-tabs__bar {
  border-left: none !important;
}
