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;
}

.lead a {
    text-decoration: none;
}

    .lead a:hover {
        text-decoration: underline;
    }

.cursor-pointer {
    cursor: pointer;
}

#user-table tr {
    cursor: pointer;
}
/* Shared/Guide partial styles */
:not(.collapsed) .plus-minus:after {
    font-family: FontAwesome;
    content: "\f077";
    color: blue;
}

.collapsed .plus-minus:after {
    font-family: FontAwesome;
    content: "\f078";
    color: blue;
}

.gray {
    background-color: #eaeaea;
}

mark {
    background: #f1c40f;
}

.form-control::file-selector-button {
    background-color: #ffc107;
}

#request-table tbody td {
    cursor: pointer;
}

    #request-table tbody td .fa {
        display: inline;
    }

#reshelved-table tbody td {
    cursor: pointer;
}

    #reshelved-table tbody td .fa {
        display: inline;
    }

.code {
    color: #fff;
}


@media print {
    div {
        display: block !important;
        width: auto !important;
        float: none !important;
        position: static !important;
        overflow: visible !important;
        font-size: .75rem;
    }

    .navbar {
        display: none !important;
    }

    .call-slip {
        page-break-after: always;

        &:last-child {
            page-break-after: unset;
        }
    }

    .print-back, footer {
        display: none !important;
    }

    .code {
        color: #000;
    }

    .alert {
        display: none !important;
    }
}