/* Stabler — minimal overrides on top of Tabler core.
 * Phase 0: just tune the brand color + a few link/avatar touches.
 * Phase 1 will swap CDN Tabler for a locally built SCSS bundle.
 */

/* Tipografi katmani — Inter + JetBrains Mono, self-hosted.
 * Ayrintili gerekce ve geri alma notu: stbl-typography.css basindaki blok. */
@import url("./stbl-typography.css");

:root {
	--tblr-primary: #206bc4;
	--tblr-primary-rgb: 32, 107, 196;

	/* Dropdown / popover tokens (shadcn "new-york" look), theme-driven off
	 * Tabler vars with fallbacks. Shared by Typeahead.vue and Select.vue —
	 * the single source of truth so both menus stay identical. */
	--stbl-dropdown-bg: var(--tblr-bg-surface, #fff);
	--stbl-dropdown-fg: var(--tblr-body-color, #1a2433);
	--stbl-dropdown-muted: var(--tblr-secondary, #6c7a91);
	--stbl-dropdown-border: var(--tblr-border-color, #e6e7e9);
	--stbl-dropdown-radius: 0.5rem;
	--stbl-dropdown-item-radius: 0.25rem;
	--stbl-dropdown-shadow: 0 4px 14px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
	/* Neutral accent (hover / keyboard cursor) — NOT a full primary bar. */
	--stbl-dropdown-accent-bg: var(--tblr-gray-100, #f6f8fb);
	--stbl-dropdown-accent-fg: var(--tblr-body-color, #1a2433);
	--stbl-dropdown-check: var(--tblr-primary, #206bc4);
	--stbl-dropdown-font-size: 0.8125rem;
}

body {
	font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

.navbar-brand img {
	filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.08));
}

.empty-img img {
	opacity: 0.85;
}

.user-menu-trigger:hover {
	background-color: rgba(255, 255, 255, 0.06);
}

.stbl-nav {
	gap: 0.125rem;
}

.stbl-nav-section {
	color: rgba(255, 255, 255, 0.46);
	font-size: 0.625rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	margin: 0.75rem 0 0.25rem;
	padding: 0 0.75rem;
	text-transform: uppercase;
}

.stbl-nav .nav-link {
	border-radius: 0.375rem;
	margin-inline: 0.375rem;
	position: relative;
	transition: background-color 160ms ease, color 160ms ease;
}

.stbl-nav .nav-item.active > .nav-link {
	background-color: rgba(255, 255, 255, 0.06);
	color: #fff;
}

.stbl-nav .nav-item.active > .nav-link::before {
	background: var(--tblr-primary);
	border-radius: 0 2px 2px 0;
	bottom: 0.375rem;
	content: "";
	left: -0.375rem;
	position: absolute;
	top: 0.375rem;
	width: 3px;
}

.stbl-subtext {
	color: var(--tblr-gray-600, #536171);
}

.stbl-amount {
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.stbl-flex-name {
	min-width: 0;
}

.stbl-module-header {
	background: var(--tblr-body-bg);
	border-bottom: 1px solid var(--tblr-border-color);
	padding: 0;
}

.stbl-module-header-row {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0 1.25rem;
	min-height: 3.5rem; /* 56px */
}

.stbl-module-title {
	align-items: center;
	display: inline-flex;
	flex: 0 0 auto;
	gap: 0.5rem;
	margin: 0;
	font-size: 1.25rem;
}

.stbl-module-tabs {
	flex: 1 1 auto;
	margin-bottom: 0;
	min-width: 0;
}

.stbl-balance-chip {
	align-items: center;
	display: inline-flex;
	flex-wrap: wrap;            /* label + amount wrap to two lines in narrow cards */
	justify-content: center;
	gap: 0.15rem 0.35rem;
	max-width: 100%;
	white-space: normal;       /* override Tabler .badge nowrap so it never clips */
}

.stbl-balance-chip-lg {
	font-size: 0.875rem;
	padding: 0.35rem 0.5rem;
}

/* App-wide: every data table is striped by default. Add `.table-no-stripe`
 * to a specific table to opt out. Targets the tr directly — Tabler's
 * --tblr-table-accent-bg chain resolves to near-white (#fcfdfe) so we
 * bypass it; cells are transparent and show the row background through. */
.table:not(.table-no-stripe) > tbody > tr:nth-of-type(odd) {
	background-color: var(--tblr-gray-100, #f6f8fb);
}

/* Full-width content: Stabler is a dense data app, so module pages use the whole
 * viewport width instead of Tabler's centered 1320px .container-xl. Scoped to
 * .page-wrapper so only the in-app content area widens; Tabler's default
 * horizontal gutters stay, so content keeps a small margin and never touches the
 * screen edge. To re-cap a specific page, wrap it in a narrower .container-*. */
.page-wrapper .container-xl {
	max-width: none;
}

/* Keyboard-scrollable modal body: gives Arrow/PageDown a focusable region
 * to scroll. tabindex="0" must be added in the template alongside this class. */
.stbl-scroll-body {
	overflow-y: auto;
	max-height: calc(100vh - 14rem);
}

/* ── Shared dropdown popover (shadcn "new-york") ────────────────────────────
 * Used by Typeahead.vue's teleported search menu and Select.vue's option menu.
 * Both teleport to <body> with inline position:fixed coords, so these rules
 * style only the look, never the placement. */
.stbl-menu {
	background-color: var(--stbl-dropdown-bg);
	color: var(--stbl-dropdown-fg);
	border: 1px solid var(--stbl-dropdown-border);
	border-radius: var(--stbl-dropdown-radius);
	box-shadow: var(--stbl-dropdown-shadow);
	padding: 0.375rem;
	font-size: var(--stbl-dropdown-font-size);
	/* Teleported menus set z-index/position/max-height inline. */
}

.stbl-menu-item {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	width: 100%;
	/* Left gutter reserves room for the selected check, like shadcn's pl-8. */
	padding: 0.3rem 0.5rem 0.3rem 1.75rem;
	border: 0;
	border-radius: var(--stbl-dropdown-item-radius);
	background-color: transparent;
	color: inherit;
	font-size: inherit;
	line-height: 1.3;
	text-align: left;
	cursor: pointer;
	position: relative;
}

/* Combobox menus (Typeahead) open only before a pick, so no row is ever the
 * "selected" one — drop the check gutter so avatars/text aren't over-indented. */
.stbl-menu--nocheck .stbl-menu-item {
	padding-left: 0.5rem;
}

/* Long labels ellipsize instead of wrapping the row taller. Flex children must
 * be allowed to shrink (min-width:0) before text-overflow can take effect. */
.stbl-menu-item > * {
	min-width: 0;
}
.stbl-menu-item .fw-semibold,
.stbl-menu-item .text-secondary,
.stbl-menu-item .small {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Hover and keyboard cursor share the neutral accent — text stays dark. */
.stbl-menu-item:hover,
.stbl-menu-item.is-active {
	background-color: var(--stbl-dropdown-accent-bg);
	color: var(--stbl-dropdown-accent-fg);
}

.stbl-menu-item:disabled,
.stbl-menu-item.is-disabled {
	opacity: 0.45;
	cursor: default;
	pointer-events: none;
}

/* Selected check in the reserved left gutter. */
.stbl-menu-item .stbl-menu-check {
	position: absolute;
	left: 0.5rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--stbl-dropdown-check);
	font-size: 0.875rem;
	line-height: 1;
}

.stbl-menu-empty {
	padding: 0.5rem 0.75rem;
	text-align: center;
	color: var(--stbl-dropdown-muted);
}

/* Scroll affordance chevrons (shown only when the viewport overflows). */
.stbl-menu-scroll {
	display: flex;
	justify-content: center;
	padding: 0.1rem 0;
	color: var(--stbl-dropdown-muted);
	cursor: default;
}

/* ==========================================================================
   Stabler Modernist KPI / Score Cards
   ========================================================================== */
.stbl-kpi-card {
	background: var(--tblr-bg-surface, #fff);
	border: 1px solid var(--tblr-border-color, #e6e7e9);
	border-radius: 0.5rem;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
	position: relative;
	min-height: 100%;
}

.stbl-kpi-card .card-body {
	min-height: 96px;
}

.stbl-kpi-label {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--tblr-secondary, #6c7a91);
}

.stbl-kpi-value {
	font-size: 1.45rem;
	line-height: 1.2;
	color: var(--tblr-body-color, #1a2433);
	letter-spacing: -0.02em;
	font-variant-numeric: tabular-nums;
}

.stbl-kpi-card--clickable {
	cursor: pointer;
	user-select: none;
}

.stbl-kpi-card--clickable:hover {
	border-color: var(--tblr-primary, #206bc4);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.stbl-kpi-card--active {
	border-color: var(--tblr-primary, #206bc4);
	background-color: var(--tblr-primary-lt, rgba(32, 107, 196, 0.04));
	box-shadow: 0 0 0 1px var(--tblr-primary, #206bc4), 0 4px 12px rgba(32, 107, 196, 0.08);
}

/* Selection mode: an INSET ring, never a border swap — the card must not move
   by a pixel when the user ticks a row, or the whole strip jitters. */
.stbl-kpi-card--selected {
	box-shadow: inset 0 0 0 1px var(--tblr-primary, #206bc4);
	background-color: var(--tblr-primary-lt, rgba(32, 107, 196, 0.04));
}

/* Entering selection mode swaps the corner icon for the SELECTION mark, which
   is shorter than the icon. Without a floor the card would lose ~3px of height
   the moment a row is ticked and the whole strip would twitch. */
.stbl-kpi-headrow {
	min-height: 2.125rem;
}

/* The label yields space, the SELECTION mark never does: a half-rendered
   "SELECTK" reads as a bug, while a truncated title still reads as a title. */
.stbl-kpi-head {
	flex: 1 1 auto;
	min-width: 0;
}

.stbl-kpi-head .stbl-kpi-label {
	flex: 0 1 auto;
	min-width: 0;
}

.stbl-kpi-selmark {
	font-size: 0.6rem;
	font-weight: 600;
	letter-spacing: 0;
	padding: 0.1rem 0.25rem;
	flex: 0 0 auto;
	white-space: nowrap;
}

.stbl-kpi-global {
	font-size: 0.72rem;
	line-height: 1.2;
}

.stbl-kpi-badge {
	font-size: 0.72rem;
	font-weight: 500;
	padding: 0.2rem 0.5rem;
	border: 1px solid transparent;
}

.stbl-kpi-badge.cursor-pointer:hover {
	filter: brightness(0.95);
}

.stbl-kpi-icon {
	font-size: 2.1rem;
	line-height: 1;
	opacity: 0.45;
	stroke-width: 1.5;
	transition: opacity 0.15s ease, transform 0.15s ease;
}

.stbl-kpi-card:hover .stbl-kpi-icon {
	opacity: 0.75;
	transform: scale(1.05);
}


