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;
}
.nav-item .nav-link.active {
    text-decoration: underline;
}
.photo-cell .thumb-wrap {
    position: relative;
    display: inline-block;
    border: 1px solid var(--bs-border-color, #dee2e6);
    border-radius: .5rem;
    overflow: hidden;
    background: #fff;
    transition: box-shadow .15s, border-color .15s;
}

    .photo-cell .thumb-wrap:hover,
    .photo-cell .thumb-wrap:focus-within {
        border-color: var(--bs-danger, #dc3545);
        box-shadow: 0 0 0 .2rem rgba(220,53,69,.15);
    }

.thumb-del-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    display: none;
    border: 0;
    background: rgba(220,53,69,.95);
    color: #fff;
    border-radius: .5rem;
    padding: .35rem .5rem;
    line-height: 1;
}

.thumb-wrap:hover .thumb-del-btn,
.thumb-wrap:focus-within .thumb-del-btn {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
}

.thumb-wrap.deleting {
    opacity: .6;
    pointer-events: none;
}