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%;
}

body {
  min-height: 100vh;

/*Problem mit Footerüberlagerung lösen*/
  display: flex;
  flex-direction: column;

  background-image: url('/img/manesoft_Background_blanc.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;

  color: white;
}

main {
    flex: 1;
}

footer {
    margin-top: auto;
}

.navbar {
    background: transparent !important;
}

.navbar-brand, footer.text-muted > div {
    color: white;
}


p > a {
    color: black;
}

p {
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}

footer.text-muted > div {
    color: white;
}


.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;
}

.field-validation-error{
    font-size: 14px;
    color: red;
}

@media (min-width: 768px) {
    .w-md-75 {
        width: 75% !important;
    }
}

.modal-content{
    color: black;
}

.js-not-ready {
    visibility: hidden;
}

.js-ready {
    visibility: visible;
}

/* Brand (Logo + Text) sauber zentrieren */
.navbar .navbar-brand {
    line-height: 1;
}



.navbar.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,1);
}

.navbar.navbar-dark .navbar-nav .nav-link:hover {
    color: rgba(255,255,255,1);
}

/* Logo-Höhe fix, Breite automatisch */
.navbar-logo {
    height: 28px;
    width: auto;
}

/* Logo minimal kleiner */
.navbar-logo {
    height: 20px; /* vorher 28px */
    width: auto;
}


/* Links sauber einheitlich ausrichten */
.navbar .nav-link {
    display: flex;
    align-items: center;
    line-height: 1;
    padding-top: .4rem;
    padding-bottom: .4rem;
    opacity: 1; /* kein ausgegraut */
}

    /* Optional: Hover/Active etwas knackiger */
    .navbar .nav-link:hover,
    .navbar .nav-link:focus {
        opacity: 1;
        text-decoration: none;
    }

    .navbar .nav-link.active {
        font-weight: 600;
    }