/* Base font size */
html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

/* Focus styles */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem rgba(37, 140, 251, 0.5), 0 0 0 0.25rem rgba(37, 140, 251, 0.25);
}

html {
  position: relative;
  min-height: 100%;
}

#FooterIndexMain{
    color: white;
}

body {
  margin-bottom: 60px;
}

/* Form placeholder styling */
.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;
}

/* Main content padding to account for fixed navbar */
.main-content {
  padding-top: 70px;
}

/* Legacy Bootstrap navbar fixed top */
.navbar-fixed-top {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .main-content {
    padding-top: 60px;
  }
}

@media (min-width: 768px) {
  .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}

/* Panel title styling */
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
}

/* Jumbotron adjustments */
.jumbotron {
  padding-top: 48px;
  padding-bottom: 48px;
}

/* Ensure proper spacing */
.navbar-fixed-top + .main-content {
  padding-top: 70px;
}
