﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
   for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Typography sizing */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top { border-top: 1px solid #e5e5e5; }
.border-bottom { border-bottom: 1px solid #e5e5e5; }

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* --- Footer / layout adjustments --- */
/* Remove the old absolute footer and body bottom margin which caused the visible gap.
   Let the flex layout from site.css control vertical layout and use a fixed-height footer. */

html {
  /* do not set position:relative here */
  /* layout heights are managed in site.css */
}

body {
  /* remove any bottom margin that previously created the gap */
  margin-bottom: 0;
}

/* Fixed-height footer: does not grow with content and will sit at bottom via flex layout */
.footer {
  height: 60px;            /* fixed height - adjust if needed */
  min-height: 60px;
  display: flex;
  align-items: center;     /* vertical centering */
  justify-content: center; /* horizontal alignment; change to space-between if needed */
  width: 100%;
  overflow: hidden;        /* prevent footer from growing; use auto if you want scrollable content */
  white-space: nowrap;
  flex-shrink: 0;
}

/* Ensure the container inside footer fills footer height so vertical centering works */
.footer > .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}



