/* CCQM custom styles */
:root {
    --ccqm-green: #198754;
    --ccqm-green-soft: #d1e7dd;
}

body { font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; }

.module-card {
    transition: transform .15s ease, box-shadow .15s ease;
    cursor: pointer;
}
.module-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.12) !important;
}
.module-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; flex-shrink: 0;
}

.nav-tabs .nav-link.active {
    font-weight: 600; border-bottom-color: transparent;
    background-color: #fff;
}

.table > :not(caption) > * > * { padding: .55rem .75rem; }

code { color: #198754; background: #f0f8f0; padding: 1px 4px; border-radius: 3px; }
