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%;
}

.sidebar {
    width: 240px;
    min-height: 100vh;
}

.sidebar .nav-link {
    color: #adb5bd;
    border-radius: 6px;
    padding: 8px 12px;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active {
    background-color: #495057;
    color: #fff;
}

main {
    min-height: calc(100vh - 70px);
}

.card {
    border-radius: 12px;
}

.btn {
    border-radius: 8px;
}

.btn-sm {
    padding: 4px 8px;
}

.card-header {
    background-color: #f8f9fa;
}

.card {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card-modulo:hover{
    transform: translateY(-4px);
    box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,.15);
}

.sidebar .nav-link.fw-semibold {
    background-color: rgba(255,255,255,0.08);
}

.nav-link.active {
    background-color: #0d6efd;
    border-radius: 6px;
    font-weight: 600;
}