/* Honest Pool Service — the CRM in the public site's colours.
   Loaded after base.css; only design tokens are overridden here.
   The logo's blues are the chassis (#03589c, #4a87b7, #9fbfd9 sampled from the
   wave mark), sun gold from the public site is the accent. */
:root {
	--petrol-900: #032f55;
	--petrol-800: #03427a;
	--petrol-700: #03589c;
	--petrol-600: #1c6db0;
	--petrol-400: #4a87b7;
	--petrol-200: #9fbfd9;

	--amber-600:  #c8871a;
	--amber-500:  #e4a426;
	--amber-400:  #edb94f;
	--amber-100:  #fbf0d3;

	--ink:        #14293d;
	--ink-soft:   #4a6078;
	--ink-faint:  #7d92a8;

	--surface-sunk: #f3f7fb;
	--stripe:       #f7fafd;

	--line:        #c5d6e6;
	--line-strong: #93b0cb;

	--info-bg: #e4eef7;

	--shadow:    0 1px 2px rgba(3, 47, 85, .10);
	--shadow-lg: 0 4px 14px rgba(3, 47, 85, .16);
}

@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) {
		--ink:        #e4ecf5;
		--ink-soft:   #a6bad0;
		--ink-faint:  #7a91a8;

		--surface:        #0b2038;
		--surface-sunk:   #061627;
		--surface-raised: #12304a;
		--stripe:         #0e2942;

		--line:        #244a6b;
		--line-strong: #3a6a92;

		--info-bg: #0e3352;
	}
}

:root[data-theme="dark"] {
	--ink:        #e4ecf5;
	--ink-soft:   #a6bad0;
	--ink-faint:  #7a91a8;

	--surface:        #0b2038;
	--surface-sunk:   #061627;
	--surface-raised: #12304a;
	--stripe:         #0e2942;

	--line:        #244a6b;
	--line-strong: #3a6a92;

	--info-bg: #0e3352;
}
