/* header.css: Apply common styles for all pages 
 *             by placing this file in the header.
 */

/* inputs: stronger border and darker text */
.form-control {
    background-color: #ffffff;
    color: #626466;
    border: 1px solid #b5b8b9;
    box-shadow: none;
}
.form-control:focus {
    border-color: #262a2e94;
    box-shadow: 0 0 0 .12rem rgba(73,80,87,.15);
}

/* make the checkbox more visible */
.form-check-input {
    width: 1.2em;
    height: 1.2em;
    border: 1px solid #76787b;
    background-color: #fff;
}
.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* improve visibility of the password-hash column */
.text-monospace.small {
    color: #0b1220;
}

/* optional: increase contrast for small text elements */
.small, .form-label.small {
    color: #343a40;
}
