html {
    font-size: 14px;
    font-family: 'Courier New', monospace;
}


@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;
    margin-left: 0px;
    margin-right: 0px;
}

.catalog-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.catalog-item {
    list-style: none;
    border-style: solid;
    margin-top: 10px;
    width: 50%;
}

.catalog-link {
    display: block;
    padding-left: 10px;
    padding-right: 10px;
    color: inherit;
    text-decoration: none;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    font-size: 14px;
    font-family: 'Courier New', monospace;
}

header a {
    margin-left: 10px;
}

.pagination-list {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: white;
}

.pagination-option {
    margin-left: 5px;
    margin-right: 5px;
    border-style: solid;
    border-color: black;
    border-radius: 6px;
}

.pagination-link {
    border-color: black;
    text-decoration: none;
    color: black;
    display: block;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
    user-select: none;
}

.disabled {
    background-color: gray;
    pointer-events: none;   /* blocks mouse & touch */
    cursor: default;
    opacity: 0.4;           /* visual cue */
}

.current {
    background-color: gray;
    pointer-events: none;   /* blocks mouse & touch */
    cursor: default;
}

#logoutForm {
    display: inline;
}

.link-no-style{
    text-decoration: none;
    color: unset;
}