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 {
  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;
}

/* Huxul Owner Portal shell */
.hx-shell {
    display: flex;
    min-height: calc(100vh - 56px); /* header height approx */
}

.hx-sidebar {
    width: 260px;
    background: #fff;
    padding: 12px;
}

.hx-main {
    flex: 1;
    background: #f8f9fa;
}

.hx-nav .nav-link {
    color: #212529;
    border-radius: 8px;
    padding: 8px 10px;
}

    .hx-nav .nav-link:hover {
        background: #f1f3f5;
    }

    .hx-nav .nav-link.disabled {
        opacity: .45;
    }

/* Section headers (APPLICANTS, APPLICATIONS, etc.) */
.hx-nav-section {
    margin-top: 18px;
    margin-bottom: 6px;
    font-size: 13.5px; /* slightly bigger */
    font-weight: 600;
    color: #343a40; /* darker than disabled items */
    text-transform: uppercase;
    letter-spacing: 0.02em;
    opacity: 0.85; /* still subtle, not disabled */
}

.hx-nav {
    padding-left: 18px;
    padding-right: 10px;
}