html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.navbar-brand {
    font-size: 1.8rem;
}

.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, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

main {
    flex-grow: 1;
}



.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;
}




.card {
    border: 1px solid rgba(100, 100, 100, 0.65);
    border-radius: 0.5rem;
}

.table th, .table td {
    border: 1px solid rgba(100, 100, 100, 0.4);
}

table.table td, table.table th {
    text-align: center;
    vertical-align: middle;
}


.form-control.custom-border, .form-select.custom-border {
    border: 1px solid rgba(100, 100, 100, 0.5);
    border-radius: 0.25rem;
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(50, 150, 250, 0.3);
    border-color: rgba(50, 150, 250, 0.6);
}
