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;
    background-color: #f8f9fa;
}
h1, h4 {
    font-weight: 600;
    color: #212529;
}

/* Tabelas */
.table {
    background: #fff;
    border-radius: .5rem;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(0,0,0,.05);
}

    .table th {
        background-color: #343a40;
        color: #fff;
    }

    .table td, .table th {
        vertical-align: middle;
    }

/* Cards / listas do relatório */
.list-group-item {
    background-color: #fff;
    border-color: #dee2e6;
}

    .list-group-item strong {
        color: #0d6efd;
    }

/* Botőes */
.btn {
    border-radius: .3rem;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    color: #fff;
}