:root {
	--color-primary: #1990e6;
	--color-turquoise: #1abc9c;
	--color-background-light: #f8fafc;
	--color-background-dark: #0f172a;
	--border-radius-default: 0.375rem;
	--border-radius-lg: 0.75rem;
	--border-radius-xl: 1rem;
	--border-radius-full: 9999px;
}

*, ::after, ::before {
	box-sizing: border-box;
	border-width: 0;
	border-style: solid;
	border-color: #e5e7eb;
}

body {
	--rz-text-font-family: "Open Sans", sans-serif;
	--rz-sidebar-width: 250px;

	font-family: "Open Sans", sans-serif;
	--tw-bg-opacity: 1;
	background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
}

h1, h2, h3, .font-display {
	font-family: "Fira Sans", sans-serif;
	letter-spacing: -0.025em;
	color: rgb(15 23 42 / var(--tw-text-opacity, 1));
}

.text-white {
	--tw-text-opacity: 1;
	color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.text-sm {
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.text-lg {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.text-xl {
	font-size: 1.25rem;
	line-height: 1.75rem;
}

.text-slate-600 {
	--tw-text-opacity: 1;
	color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}

.font-semibold {
	font-weight: 600;
}

/* Custom centered menu */
.custom-menu {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1rem 0;
	gap: 0.5rem;
}

.menu-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1rem;
	width: 14rem;
	height: 3rem;
	color: rgb(71 85 105);
	text-decoration: none;
	border-radius: var(--border-radius-default);
	transition: all 0.2s ease;
	border-radius: 1rem;
}

.menu-item:hover {
	--tw-bg-opacity: 1;
	background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
}

.menu-item:hover .material-symbols-outlined {
	color: rgb(25 144 230 / var(--tw-text-opacity, 1));
}

.menu-text {
	white-space: nowrap;
}


.font-bold {
	font-weight: 700;
}

.chart-gradient {
	background: linear-gradient(180deg, rgba(26, 188, 156, 0.15) 0%, rgba(25, 144, 230, 0.03) 100%);
}

/* ------- [ START Radzen Overwrites ] ------- */

div.rz-header {
	background-color: rgb(255 255 255 / 0.9);
	box-shadow: none;
	border-style: solid;
	border-width: 2px;
	border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
	margin-left: -0.1rem;
}

ul.rz-panel-menu li.rz-navigation-item {
	border-block-end: none;
}

div.rz-sidebar.rz-sidebar-start {
	border-inline-end: none;
	border-style: solid;
	border-width: 2px;
	border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
}

button.rz-sidebar-toggle {
	--tw-text-opacity: 1;
	color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}

	button.rz-sidebar-toggle:hover {
		background: none;
		--tw-text-opacity: 1;
		color: rgb(25 144 230 / var(--tw-text-opacity, 1));
	}
/* ------- [ END Radzen Overwrites ] ------- */

.center-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 80vh;
	text-align: center;
}

.subtitle {
	font-size: 1.3rem;
	--tw-text-opacity: 1;
	color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}

.button-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-top: 1rem;
	max-width: 600px;
}

.action-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 1.5rem;
	background-color: var(--color-turquoise);
	border: none;
	border-radius: var(--border-radius-lg);
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

	.action-button:hover {
		background-color: #16a085;
		transform: translateY(-2px);
		box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
	}

	.action-button:active {
		transform: translateY(0);
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	}

.header-container {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.5rem 1rem;
}

.app-title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 600;
}