html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

.text-center{
  padding-bottom:50px;
}

.container{
  padding-bottom: 1rem;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* --- Moved from Views/Shared/_Layout.cshtml.css to serve from wwwroot --- */
a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

a {
  color: #0077cc;
}

.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;
}

.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 {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 30px 2vw;
  font-size: clamp(10px, 1vw + 0.8rem, 20px);
  color:black;
  /* Natural line height to avoid excessive vertical spacing */
  line-height: normal;
}

.logo{
  position:center;
}

/* Footer: enforce black text color */
.my-footer {
  color: #000;
}
.my-footer a { color: #000; }
.my-footer a:hover { color: #000; opacity: .8; }


/* --- Code blocks and inline code (light + dark) --- */
pre, code, kbd, samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* Light theme defaults */
pre {
  background-color: #f6f8fa;
  color: #24292e;
  border: 1px solid #e5e5e5;
  border-radius: .5rem;
  padding: 1rem;
  overflow: auto;
}

code {
  background-color: #f6f8fa;
  color: #24292e;
  border-radius: .25rem;
  padding: .15rem .35rem;
}

pre code {
  background: transparent;
  padding: 0;
}

/* Dark theme support removed intentionally to enforce light theme only */

/* --- Tables: enable horizontal scroll when content is wide --- */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* smooth on iOS */
}

/* Prevent wrapping so long text creates a horizontal scrollbar */
.table-responsive > table,
.table-responsive > .table {
  white-space: nowrap;
}