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;
}

/* Highlight active navbar links clearly even when text-dark is applied */
.navbar .nav-link.active {
  color: #0d6efd !important; /* Bootstrap primary */
  font-weight: 600;
  border-bottom: 2px solid #0d6efd;
}

/* Active state in Admin dropdown menu */
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item.active:focus,
.dropdown-menu .dropdown-item.active:hover {
  background-color: #0d6efd;
  color: #fff;
}

/* Yttre blockram – hela sektionen */
.ck-accordion-block {
    border: 1px dashed #999;
    border-radius: 6px;
    padding: 8px 10px;
    margin: 12px 0;
    background: #fafafa;
}

/* Rad med ikon + rubrik */
.ck-accordion-header-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

/* Liten pil-ikon (bara visuellt i editorn) */
.ck-accordion-icon {
    font-size: 12px;
    opacity: 0.7;
}

/* Rubriken – redigerbar yta */
.ck-accordion-title {
    font-weight: bold;
    padding: 4px 6px;
    border-radius: 4px;
    background: #f0f0f0;
    min-height: 20px;
}

/* Kroppens wrapper – håller ihop innehållet */
.ck-accordion-body-wrapper {
    border-radius: 4px;
    background: #ffffff;
    border: 1px solid #ddd;
    padding: 6px;
}

/* Kroppen – redigerbar yta */
.ck-accordion-body {
    min-height: 20px;
}

    /* Lite fokus-känsla när man skriver i rubrik/kropp */
    .ck-accordion-title:focus,
    .ck-accordion-body:focus {
        outline: 2px solid #cce5ff;
    }
