﻿:root {
	--bg-dark: oklch(0.92 0.01 264);
	--bg: oklch(0.96 0.01 264);
	--bg-light: oklch(1 0.01 264);
	--text: oklch(0.15 0.02 264);
	--text-muted: oklch(0.4 0.02 264);
	--text-light: oklch(0.96 0.02 265);
	--text-light-muted: oklch(0.76 0.02 264);
	--highlight: oklch(1 0.02 264);
	--border: oklch(0.6 0.02 264);
	--border-muted: oklch(0.7 0.02 264);
}

* {
	box-sizing: border-box;
}

html {
	font-size: 14px;
}

html, body {
	margin: 0;
	padding: 0;
}

body {
	overflow-x: hidden;
	background-color: var(--bg-dark);
	color: var(--text);
}

header.navbar {
	background-color: #0d6efd;
	color: var(--text-light);
	height: 4rem;
}

header .navbar-brand {
	color: var(--text-light);
	font-weight: 600;
	text-decoration: none;
}

header .navbar-brand:hover{
	color:var(--text-light);
}

header .nav-link {
	color: var(--text-light);
	transition: color 0.2s;
}

	header .nav-link:hover {
		color: #dce3f5;
	}

main {
	background-color: var(--bg);
}

.card {
	background: var(--bg-light);
}

.table-responsive {
	position: relative;
	max-height: calc(100vh - 12rem);
	overflow-y: auto;
}

	.table-responsive thead th {
		position: sticky;
		top: 0;
		z-index: 2;
	}
