/* Footer Layout Fix */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

body.dark-mode {
  background-color: #0f172a;
}

main {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

body.dark-mode main {
  background-color: #0f172a;
}

footer {
  margin-top: auto;
  flex-shrink: 0;
  width: 100%;
  position: relative;
  z-index: 10;
  background-color: inherit;
  bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  footer .row {
    flex-direction: column;
    gap: 1rem;
  }

  footer .col-lg-6 {
    width: 100%;
  }

  footer .text-md-start {
    text-align: center !important;
  }
}