@charset "UTF-8";
/* CSS Document */

	a, u 				{ text-decoration: none!important; color: #4A4A4A; }
	.a1:link			{ color: #4A4A4A; }
	.a1:visited			{ color: #09467F; }
	.a1:hover			{ color: #356083; }
	.a1:active			{ color: #6886CC; }
	.a2:link			{ color: #F8FAFC; }
	.a2:visited			{ color: #EAF4FF; }
	.a2:hover			{ color: #F3F6F9; }
	.a2:active			{ color: #F8FAFC; }

	.dl0 a				{ position: relative; border-collapse:collapse; text-decoration:none; border-style: none; }
	.dl0 a:link			{ color: #5A757C; border-collapse:collapse; }
	.dl0 a:visited		{ color: #5A757C; border-collapse:collapse; }
	.dl0 a:hover		{ color: #5A757C; border-collapse:collapse; }
	.dl0 a:active		{ color: #5A757C; border-collapse:collapse; }
	.lnk_tshdw			{ cursor: pointer; }
	.lnk_tshdw:hover	{ text-shadow: 2px 2px 4px rgba(1, 1, 10, .4); color: #393939; }
	.lnk_shdw0			{ cursor: pointer; }
	.lnk_shdw0:hover	{ box-shadow: 2px 2px 4px rgba(57,57,57,1.00); }
	.lnk_0 				{ cursor: pointer; color: #425870; }
	.lnk_0:hover 		{ color: #677E97; }

    body {
      /* Default font for all text except our designated classes */
      font-family: 'Open Sans', sans-serif;
      background: #F8F8F8;
      color: #333;
      line-height: 1.6;
    }
	body::-webkit-scrollbar {
		width: 10px;
	}
	
    .container {
      width: 90%;
      margin: 0 auto;
      padding: 20px;
    }
    
    /* Header & Navigation */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      z-index: 1000;
    }
    /* When hidden, header slides up */
    header.hidden {
      transform: translateY(-100%);
    }
    /* Footer */
    footer {
      background: #fff;
      padding: 20px;
      text-align: center;
      border-top: 1px solid #ddd;
      font-size: 0.9em;
    }
    /* Page Title / Logo – allowed font rule (page title) */
    .logo {
      font-family: 'Pacifico', cursive;
      font-size: 1.8em;
      color: #333;
    }
 
.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
}
.header-shell-tools {
	display: flex;
	align-items: center;
	margin-left: auto;
}
.menu-account-shell {
	display: inline-flex;
	align-items: center;
}
.shell-menu-toggle {
	position: fixed;
	left: 0;
	top: 76px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 88px;
	padding: 0;
	border: 1px solid rgba(73, 96, 119, 0.28);
	border-left: 0;
	border-radius: 0 16px 16px 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(231,239,247,0.95));
	box-shadow: 0 10px 24px rgba(37, 52, 68, 0.12);
	color: #30465d;
	cursor: grab;
	touch-action: none;
	user-select: none;
	z-index: 1505;
	transition: top 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}
.shell-menu-toggle-glyph {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.06em;
	transform-origin: center center;
	transition: transform 0.24s ease;
}
.shell-menu-toggle:hover {
	transform: translateX(2px);
	box-shadow: 0 14px 30px rgba(37, 52, 68, 0.16);
	border-color: rgba(73, 96, 119, 0.42);
	color: #24384c;
}
.shell-menu-toggle:active {
	transform: translateX(1px);
	box-shadow: 0 8px 20px rgba(37, 52, 68, 0.12);
}
.shell-menu-toggle[data-dragging='1'] {
	cursor: grabbing;
	transform: none;
}
.shell-menu-toggle[data-menu-open='1'] {
	background: linear-gradient(135deg, rgba(241,247,253,0.99), rgba(214,228,241,0.96));
	box-shadow: 0 16px 34px rgba(37, 52, 68, 0.18);
	border-color: rgba(73, 96, 119, 0.45);
}
.shell-menu-toggle[data-menu-open='1'] .shell-menu-toggle-glyph {
	transform: rotate(90deg);
}

/* Hamburger (hidden lg, shown sm) */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.8em;
	cursor: pointer;
}

/* Default nav (desktop) */
nav ul {
	list-style: none;
	display: flex;
	align-items: center;
}
nav ul li { margin-left: 20px; }

/* Small screens: panel that slides in */
@media (max-width: 768px) {
	.menu-toggle { display: block; }
	/* Turn the list into a full-viewport slide-over panel */
	nav ul {
		position: fixed;
		top: 0;
		right: 0;
		width: 100vw;            /* “at max, the size of the screen” */
		height: 100vh;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		padding: 70px 24px 24px; /* room for header */
		box-shadow: 0 8px 24px rgba(0,0,0,0.2);
		background: rgba(255,255,255,0.97);
		gap: 14px;

		/* start hidden off-screen, no IDs used */
		transform: translateX(100%);
		transition: transform 300ms ease;
		/* better touch behavior on mobile */
		touch-action: pan-y;
		overscroll-behavior: contain;
	}

	/* Visible state */
	nav ul.active {
		transform: translateX(0);
	}

	/* Compact item spacing */
	nav ul li { margin: 0; }
	.shell-menu-toggle { width: 28px; height: 74px; }
	.shell-menu-toggle-glyph { font-size: 14px; }
	.menu_pg .pg_menu_item {
		padding: 12px 14px 12px 20px;
		font-size: 14px;
	}
	.menu_pg .pg_menu_item::before {
		left: 8px;
		width: 5px;
		height: calc(100% - 16px);
	}
}
.menu_pg {
	position: fixed;
	left: -360px;
	top: 0;
	display: inline-block;
	width: min(360px, calc(100vw - 24px));
	max-width: calc(100vw - 24px);
	padding: 12px 12px 20px 12px;
	overflow-y: auto;
	overflow-x: hidden;
	border-radius: 0 0 18px 0;
	border-top: 1px solid rgba(118, 136, 156, 0.42);
	border-right: 1px solid rgba(118, 136, 156, 0.42);
	border-bottom: 1px solid rgba(118, 136, 156, 0.42);
	background:
		linear-gradient(180deg, rgba(255,255,255,0.98), rgba(238,244,249,0.96)),
		radial-gradient(circle at top right, rgba(93,124,155,0.12), rgba(255,255,255,0));
	box-shadow: 0 18px 40px rgba(27, 39, 52, 0.16);
	backdrop-filter: blur(10px);
	z-index: 1400;
}
.menu_pg.right { right: auto; }
.menu_pg .pg_menu_item {
	position: relative;
	display: block;
	width: 100%;
	margin: 10px 0 0;
	padding: 14px 18px 14px 24px;
	box-sizing: border-box;
	border: 1px solid rgba(107, 126, 146, 0.22);
	border-radius: 18px;
	background:
		linear-gradient(135deg, rgba(255,255,255,0.98), rgba(233,241,248,0.94)),
		radial-gradient(circle at right center, rgba(93,124,155,0.18), rgba(255,255,255,0));
	box-shadow: 0 10px 24px rgba(28, 40, 54, 0.08);
	color: #24384c;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.menu_pg .pg_menu_item::before {
	content: "";
	position: absolute;
	left: 10px;
	top: 50%;
	width: 6px;
	height: calc(100% - 18px);
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(43, 74, 104, 0.95), rgba(118, 148, 176, 0.92));
	transform: translateY(-50%);
	box-shadow: 0 0 0 1px rgba(255,255,255,0.36);
	transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.menu_pg .pg_menu_item::after {
	content: "";
	position: absolute;
	inset: 1px;
	border-radius: 17px;
	border: 1px solid rgba(255,255,255,0.46);
	pointer-events: none;
}
.menu_pg .pg_menu_item:hover {
	transform: translateX(6px);
	border-color: rgba(79, 108, 135, 0.4);
	box-shadow: 0 16px 34px rgba(28, 40, 54, 0.14);
	background:
		linear-gradient(135deg, rgba(255,255,255,1), rgba(225,236,246,0.98)),
		radial-gradient(circle at right center, rgba(93,124,155,0.28), rgba(255,255,255,0));
	color: #152839;
}
.menu_pg .pg_menu_item:hover::before {
	background: linear-gradient(180deg, rgba(173, 227, 255, 0.98), rgba(79, 165, 255, 0.92));
	box-shadow: 0 0 0 1px rgba(255,255,255,0.44), 0 0 18px rgba(102, 192, 255, 0.24);
}
.menu_pg .pg_menu_item:active {
	transform: translateX(3px) scale(0.99);
	box-shadow: 0 10px 24px rgba(28, 40, 54, 0.1);
}
.menu_pg .pg_menu_item:active,
.menu_pg .pg_menu_item.pg_menu_item_active,
.menu_pg .pg_menu_item.is-active,
.menu_pg .pg_menu_item[aria-current='page'] {
	border-color: rgba(72, 141, 94, 0.42);
	background:
		linear-gradient(135deg, rgba(251,255,252,1), rgba(229,244,234,0.98)),
		radial-gradient(circle at right center, rgba(89, 170, 108, 0.24), rgba(255,255,255,0));
	color: #173525;
}
.menu_pg .pg_menu_item:active:hover,
.menu_pg .pg_menu_item.pg_menu_item_active:hover,
.menu_pg .pg_menu_item.is-active:hover,
.menu_pg .pg_menu_item[aria-current='page']:hover {
	border-color: rgba(72, 141, 94, 0.42);
	background:
		linear-gradient(135deg, rgba(251,255,252,1), rgba(229,244,234,0.98)),
		radial-gradient(circle at right center, rgba(89, 170, 108, 0.24), rgba(255,255,255,0));
	color: #173525;
}
.menu_pg .pg_menu_item:active::before,
.menu_pg .pg_menu_item.pg_menu_item_active::before,
.menu_pg .pg_menu_item.is-active::before,
.menu_pg .pg_menu_item[aria-current='page']::before {
	background: linear-gradient(180deg, rgba(111, 226, 145, 0.98), rgba(38, 150, 85, 0.94));
	box-shadow: 0 0 0 1px rgba(255,255,255,0.44), 0 0 18px rgba(58, 175, 102, 0.24);
}
.menu_pg .pg_menu_item:active:hover::before,
.menu_pg .pg_menu_item.pg_menu_item_active:hover::before,
.menu_pg .pg_menu_item.is-active:hover::before,
.menu_pg .pg_menu_item[aria-current='page']:hover::before {
	background: linear-gradient(180deg, rgba(111, 226, 145, 0.98), rgba(38, 150, 85, 0.94));
	box-shadow: 0 0 0 1px rgba(255,255,255,0.44), 0 0 18px rgba(58, 175, 102, 0.24);
}
.menu-item{
	display: inline-block;		/* side-by-side shells */
	vertical-align: middle;		/* aligns with text/images in row */
	padding: 0 12px;			/* left + right spacing */
	box-sizing: border-box;		/* keeps width predictable */
	cursor: pointer;
}
/* Avatar */
.login-menu-avatar {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	object-fit: cover;
	cursor: pointer;
	transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
	border: 0px solid transparent;	/* lets active state show cleanly */
}

/* hover: subtle lift + shadow */
.login-menu-avatar:hover {
	box-shadow: 0 2px 6px rgba(0,0,0,0.25);
	transform: scale(1.05);
}

/* active: border highlight + deeper shadow */
.login-menu-avatar:active {
	border-color: #0066ff;	/* highlight border */
	box-shadow: 0 3px 10px rgba(0,102,255,0.35);
	transform: scale(0.95);
}

/* Hidden by default; toggled via .is-open */
.login-menu-panel {
	position: fixed;				/* pop out of menu stacking/overflow */
	left: 0;
	top: 0;
	display: none;
	z-index: 999999;				/* above everything */
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 12px 30px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.12);
	max-width: 360px;
	max-height: 80vh;
	overflow: hidden;
}

/* Visible state */
.login-menu-panel.is-open { display: block; }

/* Utility */
.is-hidden { display: none !important; }

/* Scrollable body inside the panel */
.login-menu-body {
	max-height: 80vh;
	overflow: auto;
	padding: 12px;
}

/* Mobile portrait: full-screen takeover */
@media (max-width: 768px){
	.menu-toggle{ display:block; }
	nav ul{
		position: fixed; top:0; right:0;
		width:100vw; height:100vh;
		flex-direction: column; align-items:flex-start;
		padding:70px 24px 24px;
		background: rgba(255,255,255,.97);
		box-shadow: 0 8px 24px rgba(0,0,0,.2);
		transform: translateX(100%);          /* closed */
		transition: transform 300ms ease;     /* animated fallback */
		touch-action: pan-y; overscroll-behavior: contain;
	}
	nav ul.active{ transform: translateX(0); } /* open */
	.menu_pg {
		width: calc(100vw - 16px);
		max-width: calc(100vw - 16px);
		border-radius: 0 14px 14px 0;
	}
}

	#pg {
		width: 100%;       /* Make sure it fills the parent's width */
		flex: 0 0 100%;    /* Prevent it from shrinking or growing unexpectedly */
	}
	main#ic {
		padding-top: 70px; /* Adjust this value to match the menu height */
	}
    /* Section Titles & Block Styles */
    /* Generic Section Styling */
    section {
      padding: 40px 0;
      background: #fff;
      margin: 20px 0;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    /* Block Titles – allowed font rule */
    .section-title {
      font-family: 'Oswald', sans-serif;
      font-size: 2em;
      margin: 40px 0 20px;
      text-align: center;
      color: #444;
    }
    /* Sub Block Titles – allowed font rule */
    .sub-section-title {
      font-family: 'Roboto Condensed', sans-serif;
      font-size: 1.5em;
      margin: 20px 0 10px;
      color: #555;
      text-align: center;
    }
    /* All block content and sub-block content use the default font (inherited) */
    .block-content, .sub-block-content {
      margin-bottom: 20px;
      text-align: center;
    }
	.public-page-hero {
		height: auto;
		min-height: 320px;
		padding: 120px 0 80px;
	}
	.public-page-actions {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 12px;
		margin-top: 24px;
	}
	.public-card-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
		gap: 20px;
		margin-top: 24px;
	}
	.public-card {
		padding: 24px;
		border: 1px solid #d7d7d7;
		border-radius: 16px;
		background: #fff;
		box-shadow: 0 8px 24px rgba(0,0,0,0.08);
		text-align: left;
	}
	.public-card h3 {
		margin-top: 0;
		margin-bottom: 12px;
		font-family: 'Oswald', sans-serif;
		color: #444;
	}
	.public-card p {
		margin-bottom: 18px;
		text-align: left;
	}
	.public-page-list {
		max-width: 720px;
		margin: 0 auto 20px;
		padding: 0;
		list-style: none;
	}
	.public-page-list li {
		position: relative;
		padding-left: 18px;
		margin-bottom: 10px;
		text-align: left;
	}
	.public-page-list li::before {
		content: "";
		position: absolute;
		left: 0;
		top: 10px;
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: #7a63a8;
	}

    /* Responsive Grid for Videos & Images */
    .grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }
    .grid-item {
      flex: 1 1 100%;
      max-width: 400px;
    }
	.flex-item {
	  flex: 1;
	  /* Additional styling as needed */
	}
	.flex-row {
		display: flex;
		flex-direction: row;
		gap: 10px; /* or any spacing you require */
	}

/* Login Section Container */
.login-container {
    margin: 20px auto;
    max-width: 500px;
    padding: 20px;
    border: 1px solid #ccc;
    background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Header */
.login-header {
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 20px;
}
/* Registration Container */
.register-container {
    margin: 20px auto;
    max-width: 500px;
    padding: 20px;
    border: 1px solid #ccc;
    background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* register scaffolding (unchanged style idea; adapt as needed) */
.register-header{
	font-size: 20px;
    text-align: center;
	margin-bottom: 8px;
}
.register-sub{
	font-size: 14px;
    text-align: center;
	opacity: .9;
	margin: 8px 0 14px 0;
}

/* ✨ new: fancy, blocky, pastel, no text-shadow */
.fancyThankyou{
	/* typography */
	font-family: 'Pacifico', cursive;
	font-size: 25px;
	font-weight: 200;
	letter-spacing: .3px;
	/* pastel gradient text without harsh colors */
	background: linear-gradient(90deg, #9ed7b2 0%, #a9d6f0 60%, #c9c7f5 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;			/* reveals gradient */
	/* spacing */
	margin: 4px 0 6px 0;
	/* subtle entrance (no shadows) */
	animation: ty_in .35s ease-out both;
}
@keyframes ty_in{
	from{ transform: translateY(6px) scale(.98); opacity:.0; }
	to{ transform: translateY(0) scale(1); opacity:1; }
}
/* motion preference */
@media (prefers-reduced-motion: reduce){
	.fancyThankyou{ animation: none; }
}

.checkmark{	--cb-size:36px;	width:var(--cb-size);	height:var(--cb-size);	display:inline-block;	vertical-align:middle; text-align: center	}
.cb_svg{	width:100%;	height:100%;	display:block;	}
.cm_mark{	fill:none;	stroke:currentColor;	stroke-width:3;	stroke-linecap:round;	stroke-linejoin:round;	pathLength:100;	stroke-dasharray:100;	stroke-dashoffset:100;	}
/* when .run is toggled on the wrapper, animate the path over 3s */
.run .cm_mark{	animation:cm_draw 3s ease forwards;	}
@keyframes cm_draw{	to{	stroke-dashoffset:0;	}	}

.login-success,
.register-success {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
	margin: 20px auto;
	max-width: 400px;
}

.login-success-title,
.register-success-title {
	font-size: 1.5rem;
	font-weight: bold;
	color: #2e7d32; /* green accent */
	margin-bottom: 8px;
}

.login-success-note,
.register-success-note {
	font-size: 1rem;
	color: #555;
	line-height: 1.4;
}
.login-success-next,
.register-success-next {
	margin-top: 10px;
	font-size: .95rem;
	line-height: 1.4;
	color: #6f5b45;
}
.login-success-link,
.register-success-link {
	margin-top: 10px;
}
/* square-tooth, thin-outline gear */
.cog-btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	width:40px;height:40px;
	cursor:pointer;border-radius:50%;
	user-select:none;
	transition:transform .2s ease, background-color .2s ease;
	color:#222; /* off-black stroke */
}

.cog-btn::before{
	content:"";
	display:inline-block;
	width:22px;
	height:22px;
	background-repeat:no-repeat;
	background-position:center;
	background-size:22px 22px;
	background-image:url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.6' stroke-linecap='butt' stroke-linejoin='miter'>\
<circle cx='12' cy='12' r='3.25' fill='none'/>\
<path d='M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-4 0v-.09a1.65 1.65 0 0 0-1-1.51 1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1 0-4h.09a1.65 1.65 0 0 0 1.51-1 1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 2.83-2.83l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 4 0v.09c0 .7.4 1.3 1 1.51a1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 2.83l-.06.06c-.43.43-.56 1.08-.33 1.82V9c.2.6.8 1 1.51 1H21a2 2 0 0 1 0 4h-.09c-.7 0-1.3.4-1.51 1z'/>\
</svg>");
}

/* hover/focus */
.cog-btn:hover { background: rgba(0,0,0,.06); transform: rotate(20deg); }
.cog-btn:active { transform: rotate(0deg) scale(.95); background: rgba(0,0,0,.1); }

/* optional dark scheme */
@media (prefers-color-scheme: dark) {
	.cog-btn { color: #e8e8e8; }
	.cog-btn:hover { background: rgba(255,255,255,.08); }
}

/* Form Field Container: holds each field and its title */
.form-field-container {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
	padding: 4px;
	border-radius: 5px;
}

/* Title/Label for each Field */
.form-field-title {
    font-size: 1em;
    margin-bottom: 5px;
    font-weight: bold;
	padding: 4px;
	border-radius: 5px;
}

/* The Field Itself */
.form-field {
    display: flex;
    flex-direction: row;
	border-radius: 5px;
	border-radius: 5px;
}
.form-field-title-under {
	display: flex;
	flex-direction: column;
}
.form-field-title-under .form-field {
	order: 1;
}
.form-field-title-under .form-field-title {
	order: 2;
	margin-top: 5px;
	margin-bottom: 0;
}

/* Input Styles */
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="password"],
.form-field input[type="tel"],
.form-field textarea {
    padding: 8px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 3px;
    width: 100%;
    box-sizing: border-box;
}
.form-field textarea {
	min-height: 96px;
}
/* Checkbox Style (if needed, you can override default) */
.form-field input[type="checkbox"] {
    transform: scale(1.2);
    margin: 5px 0;
}
.form-field-help {
	margin-top: 4px;
	font-size: .92em;
	line-height: 1.35;
	color: #666;
}
.form-error {
	min-height: 1.2em;
	margin-top: 4px;
	font-size: .92em;
	line-height: 1.35;
	color: #C62828;
}
.required {
	color: #C62828;
	font-weight: 700;
}

/* Action Button Style for clickable text (e.g., Register) */
.form-field-action {
    cursor: pointer;
    color: #007BFF;
    font-weight: bold; 
}
/* Default: stack vertically on small screens */
.auth-container {
    display: flex;
    flex-direction: column;
    gap: 20px; /* space between sections */
}

/* On larger screens, display side by side */
@media (min-width: 768px) {
    .auth-container {
        flex-direction: row;
        justify-content: space-between;
    }
    /* Ensure both sections take up equal width or adjust as desired */
    .login-container, .register-container {
        flex: 1;
        margin: 0 10px;
    }
}
/* ===========================
   Alert Window — Visual Shabang
   =========================== */

/* theme vars (sideways, 2 tabs) */
:root{
	--aw-font		: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
	--aw-bg			: rgba(20,22,28,.78);
	--aw-bg-2		: rgba(255,255,255,.06);
	--aw-txt		: #f3f6fb;
	--aw-subtxt		: #d4d9e2;
	--aw-brd		: rgba(255,255,255,.15);
	--aw-glow		: rgba(92,147,255,.35);
	--aw-accent		: #74a2ff;
	--aw-accent-2	: #9cc4ff;
}
@media (prefers-color-scheme: light){
	:root{
		--aw-bg		: rgba(255,255,255,.88);
		--aw-bg-2	: rgba(0,0,0,.06);
		--aw-txt	: #0f172a;
		--aw-subtxt	: #334155;
		--aw-brd	: rgba(0,0,0,.12);
		--aw-glow	: rgba(116,162,255,.35);
		--aw-accent	: #3b82f6;
		--aw-accent-2: #60a5fa;
	}
}

/* container */
.alertWin{
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	min-width: 260px;
	max-width: min(92vw, 560px);
	border-radius: 14px;
	background:
		linear-gradient(180deg, var(--aw-bg-2) 0%, transparent 100%),
		var(--aw-bg);
	backdrop-filter: blur(12px) saturate(1.2);
	-webkit-backdrop-filter: blur(12px) saturate(1.2);
	color: var(--aw-txt);
	border: 1px solid var(--aw-brd);
	box-shadow:
		0 10px 25px -10px rgba(0,0,0,.45),
		0 6px 18px -12px var(--aw-glow),
		inset 0 1px 0 rgba(255,255,255,.08);
	overflow: hidden;
	font-family: var(--aw-font);
	will-change: opacity, transform;
}

/* title bar — pastel muted contrast */
.alertWin_ttl{
	padding: 12px 14px;
	background:
		linear-gradient(180deg, rgba(160,185,225,.85) 0%, rgba(135,160,210,.75) 100%),
		linear-gradient(90deg, rgba(160,185,225,.65), rgba(240,245,255,.15));
	border-bottom: 1px solid var(--aw-brd);
	cursor: move;
	user-select: none;
	display: flex;
	align-items: center;
	gap: 10px;
}
/* title text */
.alertWin_ttl_txt{
	font-size: 20px;
	font-weight: 600;
	letter-spacing: .2px;
	color: #ffffff;   /* pure white, crisp contrast */
	font-family: "Epilogue", sans-serif;
}

/* close button (always visible) */
.alertWin .cls{
	width: 28px;
	height: 28px;
	border-radius: 8px;
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid transparent;
	cursor: pointer;   /* <-- force pointer cursor here */
	transition: transform .15s ease, background-color .15s ease, border-color .15s ease, box-shadow .2s ease;
}
.alertWin .cls::before{
	content: "×";
	font-size: 18px;
	line-height: 1;
	color: var(--aw-txt);
	opacity: .9;
	transition: opacity .15s ease;
}
.alertWin .cls:hover{
	background: rgba(255,255,255,.08);
	border-color: var(--aw-brd);
	box-shadow: 0 0 0 3px rgba(116,162,255,.18) inset;
	transform: translateY(-1px);
}
.alertWin .cls:hover::before{ opacity: 1; }
.alertWin .cls:active{ transform: translateY(0); }

/* message body */
.alertWin_msg{
	padding: 16px 18px 10px;
	color: var(--aw-txt);
	font-size: 14.5px;
	line-height: 1.55;
	text-shadow: 0 1px 0 rgba(0,0,0,.20);
}

/* footer */
.alertWin_ft{
	padding: 6px 18px 16px;
	display: flex;
	justify-content: flex-end;
}
.alertWin_btn{
	padding: 8px 14px;
	border-radius: 10px;
	border: 1px solid var(--aw-brd);
	background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.02));
	color: var(--aw-txt);
	font-size: 13.5px;
	font-weight: 600;
	letter-spacing: .2px;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .2s ease, background-color .15s ease, border-color .15s ease;
}
.alertWin_btn:hover{
	background: rgba(255,255,255,.12);
	box-shadow: 0 8px 16px -12px var(--aw-glow);
	transform: translateY(-1px);
}
.alertWin_btn:active{ transform: translateY(0); }

/* links inside message */
.alertWin_msg a{
	color: var(--aw-accent);
	text-decoration: none;
	border-bottom: 1px dashed rgba(116,162,255,.45);
	transition: color .15s ease, border-color .15s ease;
}
.alertWin_msg a:hover{
	color: var(--aw-accent-2);
	border-color: rgba(116,162,255,.75);
}

/* accessibility & motion */
@media (prefers-reduced-motion: reduce){
	.alertWin, .alertWin_ttl .cls{ transition: none !important; }
}

/* compact on very small screens */
@media (max-width: 380px){
	.alertWin{ max-width: 94vw; border-radius: 12px; }
	.alertWin_ttl{ padding: 10px 12px; }
	.alertWin_msg{ padding: 14px 14px 16px; }
}

/* checkmark visuals (reuse from earlier) */
.checkbox{	width: var(--cb-size);	height: var(--cb-size); display:inline-block; border-radius:6px; background: rgba(134,209,154,.08); cursor:pointer; }
.cb_svg{		width:100%; height:100%; display:block; }
.cb_box{		fill:none; stroke:#cfe7d8; stroke-width:2.5; shape-rendering:crispEdges; }
.cb_mark{	fill:none; stroke:#86d19a; stroke-width:3.5; stroke-linecap:butt; stroke-linejoin:miter; stroke-dasharray:100; stroke-dashoffset:100; shape-rendering:crispEdges; }
.checkbox.run .cb_mark{ animation: cb_draw .55s ease-out forwards; }
@keyframes cb_draw{ to{ stroke-dashoffset:0; } }

/* ✉ tilted envelope using 2 rectangles (body + V flap) */
.mail-icon{
	display: inline-block;
	position: relative;
	width: 34px;				/* a touch less wide */
	height: 22px;				/* compact body */
	box-sizing: border-box;
	border: 2px solid currentColor;
	border-radius: 5px;
	color: #444;				/* outline + flap color */
	background: transparent;
	transform: rotate(-10deg);
	transition: transform .25s ease, color .25s ease, box-shadow .25s ease, background-color .2s ease, border-color .2s ease;
	cursor: pointer;
}

/* V flap: a second rectangle with ONLY bottom+left borders */
.mail-icon::before{
	content: "";
	position: absolute;
	left: 50%;
	bottom: 3px;				/* sit just above bottom border */
	width: 22px;				/* a touch less wide */
	height: 22px;				/* compact body */
	box-sizing: border-box;

	/* only these borders visible = creates the V corner */
	border-left: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	border-top: 0;
	border-right: 0;

	/* rotate so the bottom+left meet as a V pointing down */
	transform-origin: bottom left;
	transform: rotate(-45.5deg) translateZ(0); /* crisp edges */
}

/* hover: accent + lift */
.mail-icon:hover{
	color: #0066ff;
	border-color: currentColor;
	box-shadow: 0 4px 10px rgba(0,102,255,.25);
	transform: rotate(-10deg) scale(1.05);
}

/* active: fill + white V */
.mail-icon:active{
	background-color: #0066ff;
	color: #fff;
	transform: rotate(-10deg) scale(.95);
	box-shadow: 0 2px 6px rgba(0,102,255,.30);
}
/* badge circle anchored to bottom-right of the tilted envelope */
.mail-icon .msg-badge{
	position: absolute;
	right: -10px;
	bottom: -10px;
	width: 18px;			/* ~8–10px outer; tweak if needed */
	height: 18px;
	border-radius: 50%;
	background: #fff;		/* keeps spinner readable on fill */
	border: 1px solid currentColor;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	pointer-events: none;	/* click passes through to envelope */
}
/* Hero Section */
.hero {
  height: 70vh;
  background: repeating-linear-gradient(135deg, 
    #E6E6FA, /* Lavender */
    #E6E6FA, /* Plum */
    #E6E6FA, /* Plum */
    #D8BFD8, /* Thistle */
    #D8BFD8, /* Thistle */
    #B19CD9, /* Medium Orchid */
    #B19CD9, /* Light Lavender */
    #C2A2E1, /* Soft Lilac */
    #D8BFD8, /* Thistle */
    #E6E6FA  /* Pastel Purple */
    #E6E6FA, /* Plum */
    #E6E6FA, /* Plum */
  );
  background-size: 500% 500%;
  animation: gradientShift 30s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 60px; /* Offset for fixed header */
  position: relative;
}

/* Overlay for readability */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

/* Page Title */
.hero-content h1 {
  font-family: 'Pacifico', cursive;
  font-size: 3em;
  margin-bottom: 0.5em;
}

/* Hero Paragraph */
.hero-content p {
  font-size: 1.2em;
  margin-bottom: 1em;
}

@media (max-width: 768px) {
	.public-page-hero {
		min-height: 260px;
		padding: 100px 20px 50px;
	}
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}



.youtube {
	transition: all 200ms ease-out;
	position: relative;
	cursor: pointer;
	background-position: center;
	background-repeat: no-repeat;
	display: block;
	overflow: hidden;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;

}
yt_iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.youtube .play {
	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAERklEQVR4nOWbTWhcVRTHb1IJVoxGtNCNdal2JYJReC6GWuO83PM/59yUS3FRFARdFlwYP1CfiojQWt36sRCUurRIdVFXIn41lAoVdRGrG1M01YpKrWjiYmaSl8ybZJL3cd+YA//NLObd3++eO8x79z5jSq5Gw+8kov0AP8vMR5l1BtBZQM4B8ks75wCdZdYZZj5qLZ4hov2Nht9Z9vhKKSIaB/gI4M4w62KeAO6Mte4lYOq20FxrlqqOibhHmeWbvNC9ZfDX1mLae391aN6limO/gwgvAPJbWeAZuSDingdwXTBw7/0IsyaA/Fkh+KqOkD+YNfHej1QKD+y7iVlOhgLvFqFfNJvNGyuBJ+KDAF8MDd0tgS8y64OlgSdJMsysL4cG7SOHkyQZLhTee7+d2R2rAVy/S+Jd7/32ouBHAP4gNNRGQyTHc/84NhqNywZp5rvjjnnvt21aABFeCQ+RLwAf2hQ8s7sv9OCLk6AHNgQvIrvbfzKCD76g/O6cu7lf/iER/aQGgy448pExZmhdegAPhR9sObFWH1gT3lp7DaA/5bkIgJhZPgsNmz02novj+KqeApj1ubwXWe4kdyeznAgNvTpE/HQmvKqOMeuFogTUVQSRno+iaLRLAJF7uIgL9O4ubgL8aWgB7S44mNX+35YpICUiAvS9sBLkq1WzT+NFffl6AuoiApi6NT37h6sWkBIRZGkQ8YtLgyji6e1mBYTqCEBPG2Naz+0BWQgtoGoRgCzEsd9hAN1X5BfnFZASUfrSAFQNsyZ1FJASUVpHiLinDJG8U2cBZYogkrcNs5waBAGdstbeU9zdqpw0gPwwSAI6VUxHyFlDpOcHUUBBIuYNs14aZAE5RVwyzPr3/0EAEY0TyfGNjBWQvwZ+CTSbehfAH29mrID8bET0+0EUkAd8WYDOmqJ3ecsG30yr9wqRfm6Y+a1BEFDEjHfHvWmY9ck6CygHvBVr8Xhtb4ZE5HZA3y8DvBNA1TjnrmXWf+sioMwZX5V/VHXMGGMMoKdDCxCRvRWBdzKzdHEO+EisilbPyopHYqp6S9UCAsz4iojI7hUDAtyXVQgIDd6KnOoaWNkbI6FaPSuZGyMArsi7MZoloB4zviI/Nhr3X95jltwTRQmoIfgisy5ai+me67OI7fE4nrqjrqfK1t0eby0FPRB6oGVlchL3rgnfrq19RKbVBdhV9IOSwJmfmJi4vi/4ThERitwyCxVAFqydshuCX5awhQ9KtmuIWd8IDZED/nXT77rvVVv6sHRKwjYi91poqP7Dr+Y6JJ1VSZIMA3wkPNy6bX+o8Bcm0sXMdwM8Fxo0A3xORPaWBp6uPXsmbxCRD0NDL0dOANhVCXy6iAjMcjbcrMt3RITKwdMVRdFo+y5yvkL4eWZ+zHt/ZVD4dEVRNGotpst+dZZZH8k86lqn2pIvT/eqrNfn2xuyqYPZ8mv7s8pfn/8Pybm4TIjanscAAAAASUVORK5CYII=") no-repeat center center;
	background-size: 64px 64px;
	position: absolute;
	height: 100%;
	width: 100%;
	opacity: .8;
	filter: alpha(opacity=80);
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
.youtube .play:hover {
	opacity: 1;
	filter: alpha(opacity=100);
}

.ver-page-wrap,
.ver-shell {
	clear: both;
	max-width: 920px;
	margin: 20px auto;
}

.ver-page-title,
.ver-shell-head {
	clear: both;
	display: inline-block;
	margin-bottom: 18px;
	padding: 10px 24px;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(32,38,45,0.96), rgba(77,98,120,0.92));
	color: #f7fbff;
	font-size: 26px;
	letter-spacing: 0.03em;
	box-shadow: 0 16px 34px rgba(32,38,45,0.18);
}

.ver-shell-body {
	clear: both;
}

.ver-card,
.ver-status-card {
	clear: both;
	padding: 24px;
	background:
		linear-gradient(180deg, rgba(255,255,255,0.96), rgba(245,249,252,0.96)),
		radial-gradient(circle at top right, rgba(91,120,154,0.18), rgba(255,255,255,0));
	border: 1px solid rgba(91,120,154,0.22);
	border-radius: 26px;
	box-shadow: 0 24px 48px rgba(27,39,52,0.12);
}

.ver-card-title,
.ver-status-title,
.ver-panel-title {
	clear: both;
	font-size: 24px;
	font-weight: 700;
	color: #2e4357;
}

.ver-card-note,
.ver-status-note,
.ver-status-sub {
	clear: both;
	margin-top: 10px;
	color: #546b80;
	line-height: 1.55;
}

.ver-grid {
	clear: both;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 20px;
}

.ver-panel {
	clear: both;
	padding: 18px;
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(238,244,248,0.96));
	border: 1px solid rgba(91,120,154,0.18);
}

.ver-panel-action,
.ver-status-action {
	margin-top: 14px;
}

.ver-panel .form-field-container,
.ver-card .form-field-container {
	margin-top: 12px;
}

@media (max-width: 768px) {
	.ver-page-wrap,
	.ver-shell {
		margin: 14px auto;
	}

	.ver-page-title,
	.ver-shell-head {
		font-size: 22px;
		padding: 10px 18px;
	}

	.ver-card,
	.ver-status-card,
	.ver-panel {
		padding: 18px;
		border-radius: 22px;
	}

	.ver-grid {
		grid-template-columns: 1fr;
	}
}


/* ===== Popup Window System ===== */
.popupWindow { position: fixed; background: #fff; border: 1px solid #ccc; border-radius: 4px; box-shadow: 0 4px 20px rgba(0,0,0,.25); min-width: 300px; min-height: 150px; }
.popupTitleBar { display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; background: #f5f5f5; border-bottom: 1px solid #ddd; cursor: move; user-select: none; border-radius: 4px 4px 0 0; }
.popupTitle { font-weight: 600; font-size: 14px; color: #333; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.popupClose { font-size: 18px; font-weight: 700; color: #999; cursor: pointer; padding: 0 4px; line-height: 1; }
.popupClose:hover { color: #333; }
.popupContent { padding: 12px; overflow-y: auto; max-height: calc(100% - 40px); }


/* ===== Icon Controls ===== */
/* Shared hover pattern for all icon controls */
.ico { display: inline-block; box-sizing: border-box; vertical-align: middle; cursor: pointer; }
.ico:hover { -webkit-filter: drop-shadow(2px 2px 2px rgba(140,140,140,0.70)); filter: drop-shadow(2px 2px 2px rgba(140,140,140,0.70)); cursor: pointer; }

/* Asset-based icons — canon pattern: background:url(../I/...) no-repeat 100% 100% */
.bk { vertical-align: middle; }
.bk:hover { -webkit-filter: drop-shadow(2px 2px 2px rgba(140,140,140,0.70)); filter: drop-shadow(2px 2px 2px rgba(140,140,140,0.70)); cursor: pointer; }
.srch { flex-shrink: 0; box-sizing: border-box; vertical-align: middle; width: 20px; height: 20px; padding: 0; background: url(../I/srch_sml.png) no-repeat 100% 100%; }
.srch:hover { -webkit-filter: drop-shadow(2px 2px 2px rgba(140,140,140,0.70)); filter: drop-shadow(2px 2px 2px rgba(140,140,140,0.70)); cursor: pointer; }
.asc { flex-shrink: 0; box-sizing: border-box; vertical-align: middle; width: 20px; height: 20px; padding: 0; background: url(../I/asc_sml2.png) no-repeat 100% 100%; }
.asc:hover { -webkit-filter: drop-shadow(2px 2px 2px rgba(140,140,140,0.70)); filter: drop-shadow(2px 2px 2px rgba(140,140,140,0.70)); cursor: pointer; }
.desc { flex-shrink: 0; box-sizing: border-box; vertical-align: middle; width: 20px; height: 20px; padding: 0; background: url(../I/desc_sml2.png) no-repeat 100% 100%; }
.desc:hover { -webkit-filter: drop-shadow(2px 2px 2px rgba(140,140,140,0.70)); filter: drop-shadow(2px 2px 2px rgba(140,140,140,0.70)); cursor: pointer; }

/* CSS gradient icons — resolution independent */
.add,
.edit_btn,
.del,
.del_black,
.del_red,
.menu_btn,
.menu_cls {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	vertical-align: middle;
	box-sizing: border-box;
	position: relative;
	width: 24px;
	height: 24px;
	min-width: 24px;
	padding: 0;
	border-radius: 999px;
	border: 1px solid transparent;
	background-color: transparent;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	box-shadow: 0 6px 16px rgba(24, 43, 60, 0.10);
	line-height: 1;
	text-align: center;
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, color 160ms ease, background-image 160ms ease, -webkit-filter 160ms ease, filter 160ms ease;
}
.add:hover,
.edit_btn:hover,
.del:hover,
.del_black:hover,
.del_red:hover,
.menu_btn:hover,
.menu_cls:hover {
	-webkit-filter: drop-shadow(2px 2px 2px rgba(140,140,140,0.70));
	filter: drop-shadow(2px 2px 2px rgba(140,140,140,0.70));
	cursor: pointer;
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(24, 43, 60, 0.16);
}
.add:active,
.edit_btn:active,
.del:active,
.del_black:active,
.del_red:active,
.menu_btn:active,
.menu_cls:active {
	-webkit-filter: none;
	filter: none;
	transform: translateY(0);
	box-shadow: inset 0 1px 3px rgba(24, 43, 60, 0.18), 0 3px 8px rgba(24, 43, 60, 0.10);
}
.add {
	border: 1px solid #7089a3;
	background-image: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, #eee 100%);
	color: #4d6178;
}
.add:hover {
	border-color: #5f7994;
	background-image: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, #eee 100%);
	color: #38526d;
}
.add:active {
	border-color: #4b627b;
	background-image: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, #eee 100%);
	color: #27405a;
}
.add::before,
.add::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	display: block;
	background: currentColor;
	border-radius: 999px;
	transform: translate(-50%, -50%);
	pointer-events: none;
}
.add::before {
	width: 10px;
	height: 2px;
}
.add::after {
	width: 2px;
	height: 10px;
}
.cls,
.clse {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	vertical-align: middle;
	box-sizing: border-box;
	border-radius: 999px;
	border: 1px solid #7089a3;
	background-image:
		linear-gradient(-45deg, transparent 0%, transparent 44%, #4d6178 44%, #4d6178 56%, transparent 56%, transparent 100%),
		linear-gradient(45deg, transparent 0%, transparent 44%, #4d6178 44%, #4d6178 56%, transparent 56%, transparent 100%),
		radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, #eee 100%);
	box-shadow: 0 6px 16px rgba(24, 43, 60, 0.10);
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, -webkit-filter 160ms ease, filter 160ms ease;
}
.cls {
	width: 17px;
	height: 17px;
}
.clse {
	width: 20px;
	height: 20px;
}
.cls:hover,
.clse:hover,
.rnd:hover {
	-webkit-filter: drop-shadow(2px 2px 2px rgba(140,140,140,0.70));
	filter: drop-shadow(2px 2px 2px rgba(140,140,140,0.70));
	cursor: pointer;
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(24, 43, 60, 0.16);
}
.cls:hover,
.clse:hover {
	border-color: #5f7994;
	background-image:
		linear-gradient(-45deg, transparent 0%, transparent 44%, #38526d 44%, #38526d 56%, transparent 56%, transparent 100%),
		linear-gradient(45deg, transparent 0%, transparent 44%, #38526d 44%, #38526d 56%, transparent 56%, transparent 100%),
		radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, #eee 100%);
}
.cls:active,
.clse:active,
.rnd:active {
	-webkit-filter: none;
	filter: none;
	transform: translateY(0);
	box-shadow: inset 0 1px 3px rgba(24, 43, 60, 0.18), 0 3px 8px rgba(24, 43, 60, 0.10);
}
.cls:active,
.clse:active {
	border-color: #4b627b;
	background-image:
		linear-gradient(-45deg, transparent 0%, transparent 44%, #27405a 44%, #27405a 56%, transparent 56%, transparent 100%),
		linear-gradient(45deg, transparent 0%, transparent 44%, #27405a 44%, #27405a 56%, transparent 56%, transparent 100%),
		radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, #eee 100%);
}
.rnd {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 0 5px;
	border: 1px solid #7089a3;
	background-image: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, #eee 100%);
	color: #24445f;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
	line-height: 1.3em;
	width: 1.3em;
	font-size: 1em;
	border-radius: 0.8em;
	-moz-border-radius: 0.8em;
	-webkit-border-radius: 0.8em;
	box-shadow: 0 6px 16px rgba(24, 43, 60, 0.10);
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, color 160ms ease, -webkit-filter 160ms ease, filter 160ms ease;
}

/* Flag icons */
.flg_red1 { box-sizing: border-box; vertical-align: middle; width: 15px; height: 15px; padding: 0; background: url(../I/flg_red_sml1.png) no-repeat 100% 100%; }
.flg_red1:hover { -webkit-filter: drop-shadow(2px 2px 2px rgba(140,140,140,0.70)); filter: drop-shadow(2px 2px 2px rgba(140,140,140,0.70)); cursor: pointer; }
.flg_gry1 { box-sizing: border-box; vertical-align: middle; width: 15px; height: 15px; padding: 0; background: url(../I/flg_gry_sml1.png) no-repeat 100% 100%; }
.flg_gry1:hover { -webkit-filter: drop-shadow(2px 2px 2px rgba(140,140,140,0.70)); filter: drop-shadow(2px 2px 2px rgba(140,140,140,0.70)); cursor: pointer; }

/* ===== Messaging Surfaces ===== */

/* Message widget */
.admin-wgt-slot { margin-top: 14px; }
.wgt_cont { position: relative; }
.wgt_body { min-width: 0; }
.wgt_menu_btn { position: absolute; top: 8px; right: 8px; z-index: 7; width: 32px; height: 32px; background: rgba(255,255,255,.86); border: 1px solid rgba(150,170,190,.5); box-shadow: 0 5px 14px rgba(35,55,75,.10); }
.wgt_menu_btn::before { width: 18px; height: 18px; background-size: 18px 18px; }
.wgt_menu_shell { inset: 8px; z-index: 8; min-height: 220px; max-height: min(72vh, 520px); }
.wgt_menu_subttl { margin-top: 2px; color: #6a7d8f; font-size: .78rem; font-weight: 650; }
.wgt_menu_body { gap: 10px; }
.wgt_menu_item { display: flex; flex-direction: column; gap: 8px; padding: 10px; border: 1px solid #d8e3ec; border-radius: 14px; background: #fbfdff; }
.wgt_menu_item_ttl { color: #173e62; font-size: .9rem; font-weight: 800; }
.wgt-menu-field { display: flex; flex-direction: column; gap: 8px; }
.wgt-menu-label { color: #4a5d70; font-size: .78rem; font-weight: 750; }
.wgt-menu-select { width: 100%; padding: 7px 9px; border: 1px solid #cbd5e0; border-radius: 10px; background: #fff; color: #2d3748; font-size: .82rem; font-weight: 650; }
.mem_wgt { display: flex; flex-direction: column; gap: 12px; min-width: 260px; color: #2d3748; }
.mem_wgt_head { padding-bottom: 8px; border-bottom: 1px solid #edf2f7; }
.mem_wgt_title { font-weight: 800; font-size: 1em; color: #1a365d; }
.mem_wgt_subtitle { font-size: .78em; color: #718096; margin-top: 2px; line-height: 1.35; }
.mem_wgt_stats { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
.mem_wgt_stat { cursor: pointer; transition: background .15s ease, border-color .15s ease, transform .12s ease, box-shadow .15s ease; }
.mem_wgt_stat:hover { background: #f7fafc; border-color: #90cdf4; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(49,130,206,.10); }
.mem_wgt_stat_note { color: #718096; font-size: .76rem; font-weight: 650; line-height: 1.3; }
.msg_wgt { display: flex; flex-direction: column; gap: 10px; min-width: 260px; color: #2d3748; }
.msg_wgt_head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding-bottom: 8px; border-bottom: 1px solid #edf2f7; }
.msg_wgt_title { font-weight: 800; font-size: 1em; color: #1a365d; }
.msg_wgt_subtitle { font-size: .78em; color: #718096; margin-top: 2px; }
.msg_wgt_controls { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.msg_wgt_sort { cursor: pointer; }
.msg_wgt_check { display: inline-flex; align-items: center; gap: 5px; color: #4a5568; font-size: .78em; font-weight: 700; cursor: pointer; user-select: none; }
.msg_wgt_check input { margin: 0; }
.msg_wgt_board_sel { max-width: 100%; padding: 5px 8px; border: 1px solid #cbd5e0; border-radius: 999px; background: #fff; color: #2d3748; font-size: .78em; font-weight: 650; }
.msg_wgt_board_meta { font-size: .78em; color: #718096; line-height: 1.35; }
.msg_wgt_threads { display: flex; flex-direction: column; gap: 7px; }
.msg_wgt_thread { padding: 9px 10px; border: 1px solid #e2e8f0; border-radius: 12px; background: #fff; cursor: pointer; transition: background .15s ease, border-color .15s ease, transform .12s ease, box-shadow .15s ease; }
.msg_wgt_thread:hover { background: #f7fafc; border-color: #90cdf4; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(49,130,206,.10); }
.msg_wgt_thread.is-unread { border-left: 4px solid #3182ce; }
.msg_wgt_thread_top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.msg_wgt_sender { font-size: .82em; font-weight: 800; color: #2d3748; }
.msg_wgt_time { color: #a0aec0; font-size: .72em; white-space: nowrap; }
.msg_wgt_preview { margin-top: 4px; color: #4a5568; font-size: .82em; line-height: 1.35; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.msg_wgt_thread_meta { margin-top: 5px; color: #718096; font-size: .72em; font-weight: 650; }
.msg_wgt_empty { padding: 18px 10px; border: 1px dashed #cbd5e0; border-radius: 12px; color: #718096; text-align: center; font-size: .85em; }
.msg_wgt_setup { text-align: left; }
.msg_wgt_setup_ttl { margin-bottom: 10px; color: #4a5568; font-weight: 750; text-align: center; }

/* Board list */
.msg_brd_item { padding: 12px 16px; border-bottom: 1px solid #edf2f7; transition: background .15s ease; cursor: pointer; }
.msg_brd_item:hover { background: #f7fafc; }
.msg_brd_ttl { font-weight: 600; font-size: .95em; color: #2d3748; }
.msg_brd_dsc { font-size: .8em; color: #718096; margin-top: 2px; }
.msg_brd_cnt { font-size: .8em; color: #a0aec0; }
.msg_brd_cnt_ur { font-weight: 600; color: #3182ce; }

/* Message list */
.msg_row { padding: 10px 14px; border-bottom: 1px solid #edf2f7; transition: background .15s ease; cursor: pointer; }
.msg_row:hover { background: #f7fafc; }
.msg_row_unread { font-weight: 600; }
.msg_row_unread .msg_row_sender { color: #2d3748; }
.msg_row_unread .msg_row_preview { color: #4a5568; }
.msg_row_read .msg_row_sender { color: #a0aec0; }
.msg_row_read .msg_row_preview { color: #a0aec0; }
.msg_row_sender { font-size: .9em; }
.msg_row_time { font-size: .75em; color: #a0aec0; }
.msg_toolbar_check { display: inline-flex; align-items: center; gap: 5px; color: #4a5568; font-size: .82em; font-weight: 700; cursor: pointer; user-select: none; }
.msg_toolbar_check input { margin: 0; }
.msg_row_preview { font-size: .85em; margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Toolbar (back, title, search, sort, compose) */
.msg_toolbar { display: flex; align-items: center; gap: 8px; padding: 8px 14px; border-bottom: 1px solid #e2e8f0; background: #f7fafc; }
.msg_toolbar_ttl { font-weight: 600; font-size: .95em; color: #2d3748; flex: 1; }
.msg_toolbar_btn { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: 4px; font-size: .8em; color: #4a5568; cursor: pointer; transition: background .15s ease; }
.msg_toolbar_btn:hover { background: #edf2f7; }

/* Header bar (board list title) */
.msg_header { padding: 12px 16px; border-bottom: 1px solid #e2e8f0; }
.msg_header_ttl { font-weight: 700; font-size: 1em; color: #2d3748; }

/* Single message view */
.msg_detail_head { padding: 12px 16px; border-bottom: 1px solid #edf2f7; }
.msg_detail_sender { font-weight: 600; font-size: .95em; color: #2d3748; }
.msg_detail_time { font-size: .8em; color: #a0aec0; }
.msg_detail_body { padding: 14px 16px; font-size: .9em; line-height: 1.5; color: #4a5568; }

/* Compose / Reply */
.msg_compose { padding: 12px 16px; }
.msg_compose_lbl { font-weight: 600; font-size: .85em; color: #4a5568; margin-bottom: 4px; }
.msg_textarea { width: 100%; min-height: 100px; padding: 10px; border: 1px solid #e2e8f0; border-radius: 6px; font-size: .9em; color: #2d3748; resize: vertical; transition: border-color .15s ease; box-sizing: border-box; }
.msg_textarea:focus { outline: none; border-color: #3182ce; box-shadow: 0 0 0 2px rgba(49,130,206,.15); }

/* Action buttons (send, reply, delete) */
.msg_btn { display: inline-flex; align-items: center; gap: 4px; padding: 6px 16px; border-radius: 6px; font-size: .85em; font-weight: 600; cursor: pointer; transition: background .15s ease, transform .1s ease; }
.msg_btn:active { transform: scale(.97); }
.msg_btn_primary { background: #3182ce; color: #fff; }
.msg_btn_primary:hover { background: #2c5282; }
.msg_btn_danger { background: none; color: #e53e3e; border: 1px solid #fed7d7; }
.msg_btn_danger:hover { background: #fff5f5; }
.msg_btn_ghost { background: none; color: #4a5568; }
.msg_btn_ghost:hover { background: #edf2f7; }

/* Empty state */
.msg_empty { padding: 30px 16px; text-align: center; color: #a0aec0; font-size: .9em; }

/* Menu overlay */
.msg_menu_overlay { position: absolute; top: 0; left: 0; width: 100%; background: #fff; z-index: 10; box-shadow: 0 4px 12px rgba(0,0,0,.1); border-radius: 0 0 4px 4px; overflow: hidden; }


/* Thread view */
.msg_thrd_item { padding: 10px 14px; margin-bottom: 8px; border-radius: 6px; background: #f7fafc; border: 1px solid #edf2f7; transition: border-color .15s ease, opacity .15s ease; }
.msg_from_me { margin-left: 20%; text-align: right; background: #ebf4ff; border-color: #bee3f8; }
.msg_from_them { margin-right: 20%; text-align: left; }
.msg_stat_hid { opacity: .5; border-color: #a0aec0; border-style: dashed; }
.msg_stat_trsh { opacity: .6; border-color: #e53e3e; border-style: dashed; }
.msg_stat_hld { border-color: #3182ce; border-width: 2px; }
.msg_stat_f4d { border-color: #9b2c2c; border-style: dotted; }
.msg_thrd_head { font-size: .8em; color: #718096; margin-bottom: 4px; }
.msg_thrd_sender { font-weight: 600; color: #2d3748; }
.msg_thrd_time { font-size: .75em; color: #a0aec0; }
.msg_thrd_edt { font-size: .75em; color: #a0aec0; font-style: italic; }
.msg_thrd_body { font-size: .9em; line-height: 1.5; color: #4a5568; text-align: left; word-wrap: break-word; }
.msg_thrd_ctl { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; justify-content: flex-end; }
.msg_ctl_btn { display: inline-flex; padding: 2px 8px; border-radius: 4px; font-size: .75em; color: #4a5568; cursor: pointer; border: 1px solid #e2e8f0; transition: background .15s ease; }
.msg_ctl_btn:hover { background: #edf2f7; }
.msg_ctl_danger { color: #e53e3e; border-color: #fed7d7; }
.msg_ctl_danger:hover { background: #fff5f5; }
.msg_inp { width: 100%; padding: 6px 8px; border: 1px solid #e2e8f0; border-radius: 4px; font-size: .85em; color: #2d3748; box-sizing: border-box; transition: border-color .15s ease; }
.msg_inp:focus { outline: none; border-color: #3182ce; box-shadow: 0 0 0 2px rgba(49,130,206,.15); }
.msg_err { padding: 10px 14px; margin: 8px 0; color: #e53e3e; background: #fff5f5; border: 1px solid #fed7d7; border-radius: 4px; font-size: .85em; }
@media (max-width: 768px) {
  .msg_from_me { margin-left: 10%; }
  .msg_from_them { margin-right: 10%; }
}
@media (max-width: 380px) {
  .msg_from_me { margin-left: 0; }
  .msg_from_them { margin-right: 0; }
  .msg_thrd_ctl { gap: 4px; }
  .msg_ctl_btn { font-size: .7em; padding: 2px 6px; }
}

/* ===== Search Popup ===== */
.srch_popup { padding: 0; }
.srch_popup_ttl { font-weight: 700; font-size: 1em; color: #2d3748; padding: 12px 16px; border-bottom: 1px solid #e2e8f0; }
.srch_popup_nfo { font-size: .8em; color: #718096; padding: 4px 16px; }
.srch_popup_body { padding: 8px 16px; }
.srch_popup_ft { padding: 10px 16px; border-top: 1px solid #e2e8f0; }
.srch_row { margin-bottom: 8px; }
.srch_row_lbl { font-weight: 600; font-size: .8em; color: #4a5568; margin-bottom: 2px; }
.srch_row_nfo { font-size: .75em; color: #e53e3e; }
.srch_inp { width: 100%; padding: 6px 8px; border: 1px solid #e2e8f0; border-radius: 4px; font-size: .85em; color: #2d3748; box-sizing: border-box; transition: border-color .15s ease; }
.srch_inp:focus { outline: none; border-color: #3182ce; box-shadow: 0 0 0 2px rgba(49,130,206,.15); }
select.srch_inp { appearance: auto; }
.srch_date_pick { display: flex; align-items: center; gap: 10px; min-height: 22px; }
.srch_date_inp { flex: 1 1 auto; min-width: 0; }
.cal { width: 18px; height: 18px; display: inline-block; background: url('/I/cal.png') center center / contain no-repeat; cursor: pointer; opacity: .85; transition: opacity .15s ease, transform .1s ease; }
.cal:hover { opacity: 1; transform: translateY(-1px); }
.srch_cbx_group { display: flex; flex-wrap: wrap; gap: 6px; padding: 8px 0; border-top: 1px solid #edf2f7; border-bottom: 1px solid #edf2f7; margin-bottom: 8px; }
.srch_cbx { display: inline-flex; align-items: center; gap: 4px; padding: 3px 8px; border-radius: 4px; background: #f7fafc; border: 1px solid #e2e8f0; font-size: .8em; transition: background .15s ease; }
.srch_cbx:hover { background: #edf2f7; }
.srch_cbx_inp { margin: 0; cursor: pointer; }
.srch_cbx_lbl { color: #4a5568; cursor: pointer; white-space: nowrap; }

/* ===== Calendar Popup ===== */
.cal_popup { padding: 0; }
.cal_popup_ttl { font-weight: 700; font-size: 1em; color: #2d3748; padding: 12px 16px; border-bottom: 1px solid #e2e8f0; }
.cal_popup_nfo { font-size: .8em; color: #718096; padding: 4px 16px; }
.cal_popup_body { padding: 12px 16px 14px; }
.cal_popup_ctl { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.cal_popup_ctl_blk { flex: 1 1 140px; min-width: 0; }
.cal_popup_ctl_lbl { font-weight: 600; font-size: .8em; color: #4a5568; margin-bottom: 4px; }
.cal_popup_select { width: 100%; padding: 6px 8px; border: 1px solid #e2e8f0; border-radius: 4px; font-size: .85em; color: #2d3748; background: #fff; box-sizing: border-box; }
.cal_popup_month { font-size: .8em; font-weight: 600; color: #4a5568; margin-bottom: 8px; }
.cal_popup_grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 6px; }
.cal_popup_dow { text-align: center; font-size: .72em; font-weight: 700; color: #718096; padding: 4px 0; }
.cal_popup_blank { min-height: 36px; }
.cal_popup_day { min-height: 36px; border: 1px solid #e2e8f0; border-radius: 6px; background: #fff; color: #2d3748; font-size: .82em; cursor: pointer; transition: background .15s ease, border-color .15s ease, transform .08s ease; }
.cal_popup_day:hover { background: #ebf8ff; border-color: #90cdf4; }
.cal_popup_day:active { transform: scale(.98); }
.cal_popup_day.is_selected { background: #3182ce; color: #fff; border-color: #3182ce; }
.cal_popup_day.is_disabled { background: #f7fafc; color: #cbd5e0; border-style: dashed; cursor: not-allowed; }
.cal_popup_ft { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 10px 16px; border-top: 1px solid #e2e8f0; }
.cal_popup_actions { display: flex; gap: 8px; }



/* Nav panel v6 — layers on top of utility classes (clr, mid, ilb, w200p, ofh, nowrp, rel, lnk_0, lsep_*) */
.nav_wrap { display: flex; align-items: center; justify-content: center; gap: 4px; padding: 8px 0; user-select: none; }
.nav_wrap.nav_hidden { display: none; }

.nav_arrow { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: #edf2f7; color: #4a5568; cursor: pointer; transition: background .15s ease, color .15s ease, transform .1s ease, box-shadow .15s ease; flex-shrink: 0; }
.nav_arrow:hover { background: #3182ce; color: #fff; box-shadow: 0 2px 8px rgba(49,130,206,.25); }
.nav_arrow:active { transform: scale(.92); }
.nav_arrow.nav_arrow_off { opacity: .35; pointer-events: none; }
.nav_arrow svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.nav_viewport { position: relative; height: 32px; }
.nav_strip { position: absolute; top: 0; left: 0; height: 32px; cursor: grab; }
.nav_strip:active { cursor: grabbing; }

.nav_box { display: inline-flex; align-items: center; justify-content: center; min-width: 30px; height: 28px; padding: 0 5px; border-radius: 7px; font-size: .82em; font-weight: 500; color: #4a5568; background: #f7fafc; border: 1px solid #e2e8f0; cursor: pointer; transition: background .15s ease, color .15s ease, border-color .15s ease, transform .12s ease, box-shadow .15s ease; }
.nav_box:hover { background: #edf2f7; border-color: #cbd5e0; transform: translateY(-1px); box-shadow: 0 2px 6px rgba(0,0,0,.06); }
.nav_box:active { transform: scale(.94); }
.nav_act { background: #3182ce !important; color: #fff !important; border-color: #3182ce !important; font-weight: 700; box-shadow: 0 2px 10px rgba(49,130,206,.3); pointer-events: none; }
.nav_compact_wrap { gap: 8px; padding: 6px 0; }
.nav_compact_arrow { width: 28px; height: 28px; }
.nav_compact_info { display: inline-flex; align-items: center; justify-content: center; gap: 5px; min-height: 28px; padding: 0 10px; border: 1px solid #e2e8f0; border-radius: 999px; background: #f8fafc; color: #4a5568; font-size: .78em; font-weight: 650; }
.nav_compact_label { color: #718096; font-weight: 600; }
.nav_compact_page { color: #2b6cb0; font-weight: 800; }
.nav_compact_sep { color: #718096; }
.nav_compact_meta { color: #a0aec0; font-size: .9em; font-weight: 600; }

.pg_content_wrap {
	width: 100%;
	max-width: 1480px;
	margin: 0 auto;
	padding: 16px 18px 32px;
	box-sizing: border-box;
}

/* Admin control-plane v1 */
.admin-shell {
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 16px;
}
.admin-ic-head-tools {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 10px;
	margin-left: 14px;
	vertical-align: middle;
}
.admin-ic-list-host {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
}
.admin-ic-list-host-search {
	min-width: 20px;
}
.admin-pg-head {
	display: grid;
	grid-template-columns: minmax(10rem, 1fr) minmax(12rem, auto) minmax(16rem, 1fr);
	align-items: center;
	gap: 14px;
	padding: 10px 0 18px;
}
.admin-pg-head-back,
.admin-pg-head-right {
	display: flex;
	align-items: center;
	min-width: 0;
}
.admin-pg-head-back {
	justify-content: flex-start;
}
.admin-pg-head-center {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
}
.admin-pg-head-right,
.admin-pg-head-nav,
.admin-pg-head-extra,
.admin-section-head-main {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}
.admin-pg-head-right,
.admin-pg-head-nav {
	justify-content: flex-end;
}
.admin-section-head-main {
	flex: 1 1 18rem;
	align-items: flex-start;
	flex-direction: column;
	min-width: 0;
}
.admin-pg-head-title {
	color: #16344d;
	cursor: pointer;
	font-size: 1.65rem;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
}
.admin-pg-head-title:hover {
	color: #1d5f97;
}
.admin-pg-head-back-link,
.admin-pg-nav-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #24445f;
	cursor: pointer;
	font-size: 0.96rem;
	font-weight: 700;
	line-height: 1.25;
	text-decoration: none;
	transition: color 150ms ease, transform 150ms ease;
}
.admin-pg-head-back-link:hover,
.admin-pg-nav-link:hover {
	color: #163f64;
	transform: translateY(-1px);
}
.admin-page-head,
.admin-section-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	padding: 16px 18px;
	border: 1px solid #d6e3ef;
	border-radius: 16px;
	background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
	box-shadow: 0 8px 24px rgba(31, 52, 73, 0.08);
}
.admin-page-summary,
.admin-section-copy,
.admin-card-summary,
.admin-card-note,
.admin-setting-desc,
.admin-form-note {
	color: #43576b;
	font-size: 0.95rem;
	line-height: 1.5;
}
.admin-page-actions,
.admin-card-actions,
.admin-setting-actions,
.admin-jump-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.admin-jump-nav {
	padding: 12px 0 4px;
}
.admin-jump-link,
.admin-action,
.admin-card-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 9px 14px;
	border-radius: 999px;
	border: 1px solid #b8ccde;
	background: #fff;
	color: #24445f;
	cursor: pointer;
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.admin-action:hover,
.admin-card-action:hover,
.admin-jump-link:hover {
	transform: translateY(-1px);
	border-color: #6f92ae;
	box-shadow: 0 8px 20px rgba(39, 78, 112, 0.12);
}
.admin-action-primary {
	background: #1d6fb8;
	border-color: #1d6fb8;
	color: #fff;
}
.admin-card-grid,
.admin-setting-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 16px;
}
.admin-card,
.admin-setting-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 18px;
	border: 1px solid #d7e2ec;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(24, 43, 60, 0.08);
}
.admin-card-link {
	cursor: pointer;
}
.admin-card-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(24, 43, 60, 0.12);
}
.admin-card-head,
.admin-setting-head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
}
.admin-card-title,
.admin-section-title,
.admin-setting-title {
	color: #16344d;
	font-size: 1.08rem;
	font-weight: 800;
	line-height: 1.3;
}
.admin-block-link {
	display: inline-flex;
	align-items: center;
	color: #1d5f97;
	cursor: pointer;
	font-size: 0.84rem;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	transition: color 160ms ease, transform 160ms ease;
}
.admin-block-link:hover {
	color: #133f68;
	transform: translateY(-1px);
}
.admin-setting-key {
	color: #74889a;
	font-size: 0.84rem;
	word-break: break-word;
}
.rdc-fit-wrap {
	min-width: 0;
	max-width: 100%;
	white-space: normal;
	overflow-wrap: anywhere;
	word-break: break-word;
}
.rdc-fit-ellipsis {
	min-width: 0;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.admin-status-chip,
.admin-meta-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px 10px;
	border-radius: 999px;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.02em;
}
.admin-status-chip {
	border: 1px solid transparent;
}
.admin-status-live {
	background: #e8f8ef;
	border-color: #9ed9b4;
	color: #16643b;
}
.admin-status-hub {
	background: #eef4ff;
	border-color: #aac3f2;
	color: #214f97;
}
.admin-status-scaffold {
	background: #fff6df;
	border-color: #e7cd84;
	color: #8b6400;
}
.admin-status-planned {
	background: #f2f4f7;
	border-color: #d2d8df;
	color: #576777;
}
.admin-inline-note {
	padding: 10px 14px;
	border-radius: 12px;
	background: #eef5fb;
	color: #24445f;
	font-weight: 600;
}
.nfo-note {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding-right: 38px;
}
.nfo-txt {
	flex: 1 1 auto;
	text-align: center;
}
.nfo-close {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border: 1px solid currentColor;
	border-radius: 999px;
	cursor: pointer;
	font-size: 0.92rem;
	font-weight: 900;
	line-height: 1;
	opacity: 0.72;
}
.nfo-close:hover {
	opacity: 1;
}
.admin-inline-note-success {
	background: #e8f8ef;
	color: #16643b;
}
.admin-inline-note-warn {
	background: #fff4eb;
	color: #8f4d16;
}
.admin-setting-shell {
	min-width: 0;
}
.admin-setting-body {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.admin-setting-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.admin-meta-pill {
	background: #eff4f8;
	color: #36546e;
}
.admin-form-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
}
.admin-form-grid textarea,
.admin-form-grid input,
.admin-form-grid select {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #c6d6e5;
	border-radius: 12px;
	box-sizing: border-box;
	background: #fbfdff;
	color: #16344d;
}
.admin-section {
	display: flex;
	flex-direction: column;
	gap: 14px;
	scroll-margin-top: 90px;
}
.admin-section-panel {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 18px;
	border: 1px solid #d7e2ec;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(24, 43, 60, 0.08);
}
.admin-section-card {
	min-height: 180px;
}
.admin-mini-stat-strip,
.admin-detail-data-grid,
.admin-detail-control-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 12px;
}
.admin-mini-stat,
.admin-detail-data-item,
.admin-detail-control-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 12px 14px;
	border: 1px solid #d6e3ef;
	border-radius: 14px;
	background: #fbfdff;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}
.admin-mini-stat-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.admin-mini-stat-title,
.admin-detail-data-label,
.admin-detail-control-label {
	color: #173a56;
	font-size: 0.84rem;
	font-weight: 800;
	line-height: 1.3;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.admin-mini-stat-value,
.admin-detail-data-value {
	color: #16344d;
	font-size: 1.18rem;
	font-weight: 800;
	line-height: 1.25;
}
.admin-detail-data-value {
	font-size: 1rem;
	text-transform: none;
	letter-spacing: normal;
}
.admin-detail-control-field-tools {
	justify-content: space-between;
}
.admin-select-input {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #c6d6e5;
	border-radius: 12px;
	background: #fbfdff;
	color: #16344d;
	font-size: 0.96rem;
}
.admin-info-shell {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 16px;
}
.admin-info-copy {
	color: #43576b;
	font-size: 0.98rem;
	line-height: 1.6;
	padding: 0 4px 4px;
}
.admin-mem-detail-head {
	gap: 14px;
}
.admin-mem-detail-page {
	gap: 16px;
}
.admin-webset-section-body {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.admin-webset-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0 2px;
}
.admin-webset-toolbar-main,
.admin-webset-toolbar-actions,
.admin-webset-list-shell {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.admin-webset-group-card {
	gap: 12px;
	padding: 14px 16px;
	border-radius: 12px;
	box-shadow: 0 8px 22px rgba(24, 43, 60, 0.05);
}
.admin-webset-group-head {
	align-items: flex-start;
}
.admin-webset-subgroups {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.admin-webset-subgroup {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 12px 14px;
	border: 1px solid #d6e3ef;
	border-radius: 12px;
	background: #fbfdff;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}
.admin-webset-subgroup-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.admin-webset-subgroup-title {
	color: #183a56;
	font-size: 1rem;
	font-weight: 800;
}
.admin-block-title-row {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}
.admin-block-title-row .add {
	margin-left: 2px;
}
.admin-webset-row-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(22rem, 100%), 1fr));
	gap: 10px;
}
.admin-webset-row-shell {
	min-width: 0;
}
.admin-status-caution {
	background: #fff1db;
	border-color: #e7c486;
	color: #8a5a00;
}
.admin-status-danger {
	background: #ffe8e8;
	border-color: #e5aaaa;
	color: #922c2c;
}
.admin-mem-card-shell,
.admin-mem-detail-shell {
	position: relative;
	min-width: 0;
}
.admin-mem-card {
	position: relative;
	overflow: hidden;
}
.admin-mem-card .admin-card-head {
	padding-right: 42px;
}
.admin-mem-card-head-main {
	display: flex;
	flex: 1 1 13rem;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}
.admin-mem-title-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 10px;
	padding-right: 4px;
}
.admin-mem-card-statuses {
	align-items: flex-start;
	justify-content: flex-end;
}
.menu_btn {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 28px;
	height: 28px;
	min-width: 28px;
	border: 1px solid #7d95ae;
	background-image: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, #eee 100%);
	color: #24445f;
	font-size: 0.62rem;
	font-weight: 900;
	letter-spacing: -1px;
	z-index: 2;
}
.menu_btn:hover {
	border-color: #5f7994;
	color: #173e62;
}
.menu_btn:active {
	border-color: #4b627b;
	color: #102f4a;
}
.edit_btn {
	border: 1px solid #7d95ae;
	background-image: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, #eee 100%);
	color: #24445f;
	font-size: 0.86rem;
	font-weight: 800;
}
.edit_btn:hover {
	border-color: #5f7994;
	color: #173e62;
}
.edit_btn:active {
	border-color: #4b627b;
	color: #102f4a;
}
.admin-mem-role-section {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.admin-mem-role-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.admin-mem-role-tools,
.admin-inline-form-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.admin-mem-role-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 10px;
	border-radius: 999px;
	border: 1px solid #bfd4e6;
	background: #eff6fc;
	color: #183a56;
	font-size: 0.86rem;
	font-weight: 700;
}
.del,
.del_black {
	border: 1px solid #6f7d8e;
	background-image: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, #eee 100%);
	color: #1e2b38;
	font-size: 0.95rem;
	font-weight: 800;
}
.del:hover,
.del_black:hover {
	border-color: #4f5f72;
	color: #101b25;
}
.del:active,
.del_black:active {
	border-color: #374554;
	color: #091018;
}
.del_red {
	border: 1px solid #c27b7b;
	background-image: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, #eee 100%);
	color: #992727;
	font-size: 0.95rem;
	font-weight: 800;
}
.del_red:hover {
	border-color: #a85f5f;
	color: #7f1717;
}
.del_red:active {
	border-color: #8a4747;
	color: #651010;
}
.menu_cls {
	width: auto;
	min-width: 24px;
	padding: 0 8px;
	border: 1px solid #7d95ae;
	background-image: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, #eee 100%);
	color: #24445f;
	font-size: 0.74rem;
	font-weight: 700;
}
.menu_cls:hover {
	border-color: #5f7994;
	color: #173e62;
}
.menu_cls:active {
	border-color: #4b627b;
	color: #102f4a;
}
.rdc-overflow-shell {
	overflow: hidden;
	max-height: 0;
}
.rdc-overflow-shell.rdc-overflow-open {
	overflow: visible;
	max-height: none;
}
.rdc-overflow-shell.rdc-overflow-collapsed {
	overflow: hidden;
	max-height: 0;
}
.rdc-overflow-content {
	display: block;
}
.admin-mem-role-add {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 8px;
}
.admin-mem-role-field {
	flex: 1 1 11rem;
	min-width: 0;
}
.admin-mem-role-level {
	flex-basis: 7rem;
}
.admin-inline-form-band {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0 0 16px;
	padding: 16px 18px;
	border: 1px solid #c7d7e6;
	border-radius: 16px;
	background: linear-gradient(180deg, #f9fcff 0%, #eef5fb 100%);
	box-shadow: 0 10px 24px rgba(24, 43, 60, 0.08);
}
.admin-inline-form-head {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.admin-page-access-card {
	gap: 14px;
}
.admin-page-access-head {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.admin-page-access-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 10px;
}
.admin-page-access-inline-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.admin-page-access-inline-main,
.admin-page-access-inline-form {
	display: flex;
	flex: 1 1 14rem;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	min-width: 0;
}
.admin-page-access-inline-form {
	align-items: flex-start;
}
.admin-page-access-inline-main-stack {
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
}
.admin-page-access-inline-tools {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}
.admin-page-access-text {
	color: #16344d;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4;
	min-width: 0;
	word-break: break-word;
}
.admin-page-access-title {
	font-size: 1.1rem;
	font-weight: 800;
}
.admin-page-access-route-name {
	color: #16344d;
	font-size: 1.06rem;
	font-weight: 800;
	line-height: 1.2;
}
.admin-page-access-route-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	color: #5f778d;
	font-size: 0.86rem;
	font-weight: 600;
	line-height: 1.25;
}
.admin-page-access-route-dot {
	color: #8ea2b5;
	font-size: 0.78rem;
	line-height: 1;
}
.admin-page-access-link {
	color: #1d5f97;
	cursor: pointer;
	text-decoration: none;
}
.admin-page-access-link:hover {
	color: #133f68;
}
.admin-page-access-band,
.admin-page-access-condition-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 12px 14px;
	border: 1px solid #d6e3ef;
	border-radius: 14px;
	background: #fbfdff;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}
.admin-page-access-band-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.admin-page-access-conditions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.admin-page-access-condition-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.admin-page-access-input,
.admin-page-access-select {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #c6d6e5;
	border-radius: 12px;
	box-sizing: border-box;
	background: #fbfdff;
	color: #16344d;
}
.admin-page-access-input-wrap {
	flex: 1 1 10rem;
	min-width: 0;
}
.admin-page-access-route-inputs,
.admin-page-access-role-add {
	display: flex;
	flex: 1 1 14rem;
	flex-wrap: wrap;
	gap: 8px;
	min-width: 0;
}
.admin-page-access-route-inputs .admin-page-access-input-wrap,
.admin-page-access-role-add .admin-page-access-input-wrap {
	flex: 1 1 10rem;
}
.admin-page-access-role-add .admin-page-access-input-wrap.admin-page-access-level-wrap {
	flex: 0 0 7rem;
}
.admin-page-access-note {
	font-size: 0.84rem;
}
.admin-role-catalog-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
	gap: 10px;
}
.admin-role-catalog-item {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 12px;
	border: 1px solid #d6e2ec;
	border-radius: 14px;
	background: #fff;
}
.sel-shell {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.sel-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.sel-choice {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 10px 12px;
	border: 1px solid #c9d8e5;
	border-radius: 13px;
	background: #fbfdff;
	color: #17344f;
	cursor: pointer;
	transition: border-color 140ms ease, background 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}
.sel-choice:hover {
	border-color: #8fb4d2;
	background: #f2f8fd;
	box-shadow: 0 8px 18px rgba(24, 43, 60, 0.08);
	transform: translateY(-1px);
}
.sel-choice.is-selected {
	border-color: #2f78b7;
	background: linear-gradient(180deg, #eef7ff 0%, #ddecfa 100%);
	box-shadow: inset 0 0 0 1px rgba(47, 120, 183, 0.22), 0 10px 22px rgba(47, 120, 183, 0.14);
}
.sel-choice-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}
.sel-choice-title {
	font-size: 0.98rem;
	font-weight: 800;
	line-height: 1.25;
}
.sel-choice-key {
	display: inline-flex;
	align-items: center;
	padding: 3px 8px;
	border: 1px solid #c3d8e9;
	border-radius: 999px;
	background: #eef6fc;
	color: #315b7c;
	font-size: 0.76rem;
	font-weight: 800;
	line-height: 1.2;
}
.sel-choice-desc {
	color: #60778b;
	font-size: 0.86rem;
	line-height: 1.35;
}
.sel-selected-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	min-height: 32px;
	align-items: center;
	padding: 8px;
	border: 1px dashed #b8cadb;
	border-radius: 12px;
	background: rgba(255,255,255,0.72);
}
.sel-selected-pill {
	display: inline-flex;
	align-items: center;
	padding: 5px 9px;
	border: 1px solid #9fc0dc;
	border-radius: 999px;
	background: #e9f4fd;
	color: #1d4f78;
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: capitalize;
}
.sel-selected-empty {
	color: #73879a;
	font-size: 0.84rem;
	font-weight: 700;
}
.sel-action-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}
.sel-role-shell {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.sel-role-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
}
.sel-role-assign-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(8rem, 9rem);
	gap: 10px 12px;
	align-items: start;
}
.sel-role-search-field,
.sel-role-select-field {
	grid-column: 1 / 2;
}
.sel-role-level-field {
	grid-column: 2 / 3;
	grid-row: 1 / span 2;
}
.sel-role-select {
	min-height: 15rem;
	padding: 8px 10px;
}
.sel-role-grid,
.sel-role-form-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr));
	gap: 12px;
}
.sel-role-form-span {
	grid-column: 1 / -1;
}
.sel-role-item {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 14px;
	border: 1px solid #d6e2ec;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 10px 24px rgba(24, 43, 60, 0.06);
}
.sel-role-item-meta {
	color: #6a7d8f;
	font-size: 0.84rem;
}
@media (max-width: 720px) {
	.sel-role-assign-grid {
		grid-template-columns: 1fr;
	}
	.sel-role-level-field,
	.sel-role-search-field,
	.sel-role-select-field {
		grid-column: auto;
		grid-row: auto;
	}
	.admin-mem-card .admin-card-head {
		padding-right: 38px;
	}
	.admin-mem-card-statuses {
		width: 100%;
	}
}
.menu_shell {
	position: absolute;
	inset: 14px;
	display: none;
	flex-direction: column;
	gap: 12px;
	padding: 14px;
	border-radius: 16px;
	border: 1px solid #c7d7e6;
	background: rgba(248, 252, 255, 0.98);
	box-shadow: 0 18px 34px rgba(24, 43, 60, 0.16);
	backdrop-filter: blur(6px);
	z-index: 6;
	overflow: auto;
}
.menu_open {
	display: flex;
	animation: rdc_menu_in 160ms ease;
}
.menu_head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
}
.menu_ttl {
	color: #173e62;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.2;
}
.menu_body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-height: 0;
}
.admin-mem-menu-actions,
.admin-mem-action-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(8.6rem, 1fr));
	gap: 10px;
}
.admin-mem-stream {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.admin-mem-stream-row {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 12px 14px;
	border: 1px solid #d8e3ec;
	border-radius: 14px;
	background: #fbfdff;
}
.admin-mem-stream-meta {
	color: #6a7d8f;
	font-size: 0.84rem;
}
@keyframes rdc_menu_in {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.admin-webset-card {
	height: 100%;
	gap: 10px;
	padding: 14px;
	border-radius: 10px;
	box-shadow: 0 8px 20px rgba(24, 43, 60, 0.05);
}
.admin-webset-card-head {
	gap: 12px;
	flex-wrap: nowrap;
	align-items: stretch;
}
.admin-webset-title-main {
	min-width: 0;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	gap: 6px;
	text-align: left;
}
.admin-webset-title-shell {
	min-width: 0;
	text-align: left;
}
.admin-webset-title-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
}
.admin-webset-title-shell .admin-setting-title {
	font-family: "Oswald", "Roboto Condensed", sans-serif;
	font-size: clamp(1rem, 0.92rem + 0.42vw, 1.22rem);
	font-weight: 400;
	letter-spacing: 0.03em;
	line-height: 1.14;
	text-transform: none;
	overflow-wrap: anywhere;
	word-break: break-word;
	hyphens: auto;
}
.admin-webset-name-line {
	padding-left: 1px;
	text-align: left;
}
.admin-webset-head-side {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: flex-start;
	gap: 8px;
	flex: 0 0 auto;
	margin-left: auto;
}
.admin-webset-key-badge {
	min-width: 0;
	height: auto;
	padding: 0;
	border-radius: 0;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 0.84rem;
	font-weight: 400;
	letter-spacing: 0.08em;
	line-height: 1;
	color: #6f8091;
	background: transparent;
	border: 0;
}
.admin-webset-meta-inline {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding-left: 1px;
	text-align: left;
}
.admin-webset-field,
.admin-webset-field-wide {
	min-width: 0;
}
.admin-webset-inline,
.admin-webset-keyword-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}
.admin-webset-fields {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.admin-webset-desc-shell,
.admin-webset-choice-shell,
.admin-webset-counter-row,
.admin-webset-inline-main {
	border: 1px solid #d7e2ec;
	border-radius: 6px;
	background: #fff;
	box-shadow: none;
}
.admin-webset-desc-shell {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
	padding: 10px 12px;
}
.admin-webset-desc-shell-edit {
	flex-direction: column;
	align-items: stretch;
}
.admin-webset-desc-copy {
	flex: 1 1 auto;
	min-width: 0;
	color: #415769;
	line-height: 1.48;
	text-align: left;
}
.admin-webset-inline-main {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 14px;
	padding: 8px 12px;
}
.admin-webset-inline-main-secondary {
	padding-top: 7px;
	padding-bottom: 7px;
}
.admin-webset-inline-block {
	min-width: 0;
}
.admin-webset-inline-block-type {
	flex: 0 0 auto;
}
.admin-webset-inline-block-grow {
	flex: 1 1 150px;
}
.admin-webset-inline-block-wrap {
	align-self: stretch;
}
.admin-webset-inline-piece-inner {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	min-width: 0;
}
.admin-webset-inline-piece-inner-grow {
	width: 100%;
}
.admin-webset-inline-piece-inner-grow .admin-webset-inline-actions {
	margin-left: auto;
}
.admin-webset-inline-piece-inner-grow .admin-webset-inline-value,
.admin-webset-inline-piece-inner-grow .admin-webset-keyword-list {
	flex: 1 1 auto;
	min-width: 0;
}
.admin-webset-inline-block-wrap .admin-webset-inline-piece-inner {
	align-items: flex-start;
}
.admin-webset-inline-block-wrap .admin-webset-inline-value-wrap {
	padding-top: 3px;
}
.admin-webset-inline-actions {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex: 0 0 auto;
}
.admin-webset-inline-actions-top {
	align-self: flex-start;
}
.admin-webset-inline-prefix,
.admin-webset-inline-value {
	color: #1f374b;
	line-height: 1.45;
	word-break: break-word;
}
.admin-webset-inline-prefix {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 0.92rem;
	font-weight: 400;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.admin-webset-inline-type-label {
	display: inline-flex;
	align-items: center;
	min-width: 0;
	color: #516575;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 0.94rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.25;
	text-transform: none;
}
.admin-webset-inline-prefix-soft {
	font-size: 0.86rem;
	letter-spacing: 0.1em;
	color: #617689;
}
.admin-webset-inline-value {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 1rem;
}
.admin-webset-inline-value-wrap {
	white-space: normal;
}
.admin-webset-edit-wrap {
	margin: 0;
}
.admin-webset-edit-wrap-inline {
	flex: 1 1 auto;
	min-width: 0;
}
.admin-webset-input,
.admin-webset-textarea,
.admin-webset-select {
	width: 100%;
	box-sizing: border-box;
}
.admin-webset-input,
.admin-webset-select {
	min-height: 40px;
	padding: 8px 12px;
	border-radius: 8px;
}
.admin-webset-textarea {
	min-height: 110px;
	padding: 10px 12px;
	border-radius: 8px;
}
.admin-webset-value-stack {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.admin-webset-color-preview {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
.admin-webset-color-swatch {
	display: inline-block;
	width: 22px;
	height: 22px;
	border: 1px solid #cad6e2;
	border-radius: 6px;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4);
}
.admin-webset-choice-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 10px;
}
.admin-webset-choice-shell {
	padding: 10px 12px;
}
.admin-webset-choice-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.admin-webset-choice-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	border: 1px solid #d7e2ec;
	border-radius: 10px;
	background: #fff;
}
.admin-webset-help {
	color: #5d7184;
	font-size: 0.84rem;
	line-height: 1.45;
	margin-top: 6px;
}
.admin-icon-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1px solid #c9d5df;
	background: #fff;
	box-shadow: 0 1px 2px rgba(24, 43, 60, 0.06);
	cursor: pointer;
	transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
}
.admin-icon-btn:hover {
	transform: translateY(-1px);
	border-color: #7a95ad;
	box-shadow: 0 6px 14px rgba(28, 53, 76, 0.1);
}
.admin-icon-btn:before,
.admin-icon-btn:after {
	content: "";
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
}
.admin-icon-btn-edit:before {
	width: 12px;
	height: 4px;
	border-radius: 2px;
	background: #23445d;
	transform: translate(-60%, -35%) rotate(-38deg);
}
.admin-icon-btn-edit:after {
	width: 0;
	height: 0;
	border-left: 4px solid #b98d58;
	border-top: 3px solid transparent;
	border-bottom: 3px solid transparent;
	transform: translate(4px, -6px) rotate(-38deg);
}
.admin-icon-btn-save:before {
	width: 16px;
	height: 16px;
	background: url(../I/save0.png) no-repeat center center / contain;
	transform: translate(-50%, -50%);
}
.admin-icon-btn-info:before {
	content: "i";
	width: auto;
	height: auto;
	color: #23445d;
	font-size: 0.95rem;
	font-style: normal;
	font-weight: 800;
	line-height: 1;
	transform: translate(-50%, -56%);
}
.admin-icon-btn-info:after {
	display: none;
}
.admin-icon-btn-trash:before {
	width: 15px;
	height: 15px;
	background: url(../I/trash_sml1.png) no-repeat center center / contain;
	transform: translate(-50%, -50%);
}
.admin-icon-btn-cancel:before,
.admin-icon-btn-cancel:after {
	width: 12px;
	height: 2px;
	border-radius: 2px;
	background: #5f7386;
}
.admin-icon-btn-cancel:before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.admin-icon-btn-cancel:after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
.admin-mini-tool {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 28px;
	padding: 0 10px;
	border-radius: 6px;
	border: 1px solid #c8d5df;
	background: #fff;
	color: #26465f;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}
.admin-mini-tool:hover {
	transform: translateY(-1px);
	border-color: #7a95ad;
	box-shadow: 0 8px 16px rgba(28, 53, 76, 0.10);
}
.admin-mini-tool-warn {
	color: #8a4f1b;
	border-color: #ddc5a5;
	background: #fff8ef;
}
.admin-icon-btn-danger {
	border-color: #e6b5ad;
	background: #fff7f5;
}
.admin-icon-btn-danger:hover {
	border-color: #cf6c5d;
	box-shadow: 0 6px 14px rgba(141, 47, 37, 0.12);
}
.admin-action-danger {
	background: #fff2f0;
	border-color: #e4a39c;
	color: #8d2f25;
}
.admin-webset-card .admin-action,
.admin-webset-card .admin-card-action {
	border-radius: 8px;
	padding: 8px 12px;
	box-shadow: none;
}
.admin-webset-card .admin-meta-pill {
	border-radius: 7px;
	background: #f1f5f9;
	color: #35536d;
}
.admin-security-title {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.admin-security-setting-card {
	gap: 10px;
}
.admin-security-step-row {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}
.admin-security-step {
	min-width: 34px;
	justify-content: center;
	font-weight: 800;
	padding-left: 10px;
	padding-right: 10px;
}
.admin-action-danger:hover {
	border-color: #c5665a;
	box-shadow: 0 8px 20px rgba(141, 47, 37, 0.12);
}
.disen_cont,
.disen_txt0,
.disen_txt1,
.disen_hndl,
.disen_cont_seld,
.disen_txt0_seld,
.disen_txt1_seld,
.disen_hndl_seld {
	transition: all 0.3s ease;
}
.disen_cont_long,
.disen_cont_med,
.disen_cont_sml {
	position: relative;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	padding: 3px;
	height: 15px;
	margin: 0;
	border-radius: 18px;
	border: solid 2px #79bfe1;
	background: linear-gradient(to bottom, #eceeef, #ffffff 25px);
	box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);
	box-sizing: content-box;
	cursor: pointer;
	user-select: none;
}
.disen_cont_long {
	width: 120px;
}
.disen_cont_med {
	width: 78px;
}
.disen_cont_sml {
	width: 60px;
}
.disen_txt0,
.disen_txt1 {
	position: absolute;
	display: inline-block;
	margin: 2px;
	padding: 2px 6px 0;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}
.disen_txt0 {
	left: 3px;
	padding-right: 23px;
	opacity: 0;
	color: #5896b4;
}
.disen_txt1 {
	right: 3px;
	padding-left: 23px;
	color: #92a0a9;
}
.disen_hndl {
	position: absolute;
	left: 3px;
	width: 15px;
	height: 15px;
	border: 2px solid #ffec00;
	border-radius: 100%;
	background: linear-gradient(to bottom, #ffffff 40%, #f0f0f0);
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
.disen_cont_seld {
	border-color: #d81c1c;
}
.disen_txt0_seld {
	opacity: 1;
}
.disen_txt1_seld {
	opacity: 0;
}
.disen_hndl_seld {
	right: 18px;
	left: auto;
	border-color: #d81c1c;
	transform: translate(100%, 0);
}
.disen_inp {
	display: none;
}

@media (max-width: 768px) {
	.pg_content_wrap {
		padding: 12px 12px 24px;
	}
	.admin-shell {
		padding: 12px;
	}
	.admin-pg-head {
		grid-template-columns: 1fr;
	}
	.admin-pg-head-back,
	.admin-pg-head-center,
	.admin-pg-head-right,
	.admin-pg-head-nav {
		justify-content: flex-start;
	}
	.admin-page-head,
	.admin-section-head,
	.admin-section-panel,
	.admin-card,
	.admin-setting-card {
		padding: 14px;
	}
	.admin-page-actions,
	.admin-card-actions,
	.admin-setting-actions,
	.admin-jump-nav {
		width: 100%;
	}
	.admin-action,
	.admin-card-action,
	.admin-jump-link {
		width: 100%;
	}
	.admin-card-grid,
	.admin-setting-grid,
	.admin-form-grid,
	.admin-webset-row-list {
		grid-template-columns: 1fr;
	}
	.admin-webset-inline-main,
	.admin-webset-desc-shell {
		padding: 10px 12px;
	}
	.admin-webset-title-row,
	.admin-webset-desc-shell,
	.admin-webset-inline-piece-inner {
		align-items: flex-start;
	}
}

.admin-log-shell {
	padding: 0;
	--admin-log-ink: #17324a;
	--admin-log-ink-soft: #5d7184;
	--admin-log-line: #d5dde4;
	--admin-log-panel-bg: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
	--admin-log-band-bg: linear-gradient(90deg, #fcfcfb 0%, #f4f7f8 58%, #faf6ef 100%);
	--admin-log-accent: #1a537c;
	--admin-log-accent-warm: #c0944b;
	--admin-log-shadow: 0 18px 34px rgba(23, 50, 74, 0.07);
}
.admin-log-shell .admin-inline-note {
	padding: 11px 13px;
	border: 1px solid #d3dbe2;
	border-radius: 4px;
	background: linear-gradient(180deg, #fbfcfd 0%, #f1f5f7 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
	color: #243746;
	font-weight: 600;
}
.admin-log-shell .admin-inline-note-success {
	background: #edf7f1;
	border-color: #c8e3d1;
	color: #1c5a35;
}
.admin-log-shell .admin-inline-note-warn {
	background: #fff6eb;
	border-color: #ead4b4;
	color: #7a4d1e;
}
.admin-log-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
	gap: 20px;
	align-items: start;
}
.admin-log-main {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.admin-log-toolbar {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.admin-log-toolbar-main {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}
.admin-log-title-wrap {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-bottom: 12px;
	position: relative;
}
.admin-log-title-wrap::after {
	content: "";
	display: block;
	width: 84px;
	height: 2px;
	background: linear-gradient(90deg, var(--admin-log-accent) 0%, var(--admin-log-accent-warm) 100%);
}
.admin-log-page-title {
	color: #102a3c;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 1.95rem;
	font-weight: 400;
	letter-spacing: 0.045em;
	line-height: 1;
	text-transform: uppercase;
}
.admin-log-mode-switch {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 4px;
	padding: 4px;
	border: 1px solid #d4dbe3;
	border-radius: 4px;
	background: linear-gradient(180deg, #f8fafb 0%, #eef2f5 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
	overflow: visible;
}
.admin-log-mode-switch .admin-log-btn {
	min-width: 122px;
	padding: 9px 14px 10px;
	border: 1px solid transparent;
	border-right: 0;
	border-radius: 2px;
	background: transparent;
	box-shadow: none;
	color: #415a70;
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.admin-log-mode-switch .admin-log-btn:last-child {
	border-right: 0;
}
.admin-log-mode-switch .admin-log-btn:hover {
	border-color: #d6dde4;
	background: rgba(255, 255, 255, 0.9);
}
.admin-log-mode-switch .admin-log-btn-active,
.admin-log-mode-switch .admin-log-btn-active:hover {
	background: #ffffff;
	border-color: #d0d8df;
	box-shadow: inset 0 -2px 0 var(--admin-log-accent-warm);
	color: #16344c;
}
.admin-log-path-strip {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 10px 14px;
	padding: 15px 18px;
	border: 1px solid var(--admin-log-line);
	border-left: 3px solid var(--admin-log-accent);
	border-radius: 4px;
	background: var(--admin-log-band-bg);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), var(--admin-log-shadow);
}
.admin-log-path-kicker {
	min-width: 92px;
	padding-top: 4px;
	color: #607487;
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.admin-log-path-copy {
	min-width: 0;
	flex: 1 1 220px;
}
.admin-log-toolbox {
	position: sticky;
	top: 14px;
	min-width: 0;
	padding: 0;
	overflow: hidden;
	border: 1px solid var(--admin-log-line);
	border-radius: 4px;
	background: var(--admin-log-panel-bg);
	box-shadow: var(--admin-log-shadow);
}
.admin-log-toolbox-inner {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 18px;
}
.admin-log-panel {
	gap: 16px;
	min-width: 0;
	border: 1px solid var(--admin-log-line);
	border-radius: 4px;
	background: var(--admin-log-panel-bg);
	box-shadow: var(--admin-log-shadow);
}
.admin-log-panel-head {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px;
	align-items: flex-start;
}
.admin-log-panel-title,
.admin-log-file-name,
.admin-log-inline-title {
	color: var(--admin-log-ink);
	font-family: "Roboto Condensed", sans-serif;
	font-size: 1.03rem;
	font-weight: 400;
	letter-spacing: 0.03em;
	line-height: 1.35;
	text-transform: uppercase;
}
.admin-log-section-title {
	color: #6a7e91;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 0.78rem;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.admin-log-panel-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.admin-log-readonly {
	background: #fbeef0;
	color: #933042;
}
.admin-log-mutable {
	background: #e8f8ef;
	color: #16643b;
}
.admin-log-section {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 0;
}
.admin-log-section-copy,
.admin-log-file-meta,
.admin-log-inline-copy,
.admin-log-window-meta {
	color: var(--admin-log-ink-soft);
	font-size: 0.88rem;
	line-height: 1.45;
}
.admin-log-chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.admin-log-source-row .admin-log-chip {
	max-width: 100%;
}
.admin-log-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid #c8d6e2;
	background: #f9fbfd;
	color: #24445f;
	font-size: 0.85rem;
	font-weight: 700;
	cursor: pointer;
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}
.admin-log-chip:hover {
	transform: translateY(-1px);
	border-color: #7293ae;
	box-shadow: 0 8px 20px rgba(39, 78, 112, 0.12);
}
.admin-log-chip-active {
	background: #1d6fb8;
	border-color: #1d6fb8;
	color: #fff;
}
.admin-log-chip-disabled {
	opacity: 0.55;
	cursor: default;
	box-shadow: none;
	transform: none;
}
.admin-log-chip-disabled:hover {
	transform: none;
	box-shadow: none;
	border-color: #c8d6e2;
}
.admin-log-input {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #c6d6e5;
	border-radius: 12px;
	box-sizing: border-box;
	background: #fbfdff;
	color: #16344d;
}
.admin-log-input-top {
	margin-top: 4px;
}
.admin-log-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 15px;
	border-radius: 4px;
	border: 1px solid #ccd5de;
	background: linear-gradient(180deg, #ffffff 0%, #eef3f7 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
	color: #1c3850;
	cursor: pointer;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}
.admin-log-btn:hover {
	transform: translateY(-1px);
	border-color: #8da1b3;
	background: #fff;
	box-shadow: 0 10px 18px rgba(23, 50, 74, 0.08);
	color: #122f46;
}
.admin-log-btn-disabled,
.admin-log-btn-disabled:hover {
	opacity: 0.5;
	cursor: default;
	box-shadow: none;
	border-color: #d4dee8;
	background: #f5f7f9;
	color: #8092a1;
}
.admin-log-btn-active,
.admin-log-btn-active:hover {
	background: linear-gradient(180deg, #1d5a83 0%, #123c5a 100%);
	border-color: #113d5d;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 12px 22px rgba(18, 60, 90, 0.18);
	color: #fff;
}
.admin-log-btn-warn {
	border-color: #dcc8a8;
	background: linear-gradient(180deg, #fffaf2 0%, #f7eddc 100%);
	color: #7c5a20;
}
.admin-log-btn-danger {
	border-color: #dcb9c0;
	background: linear-gradient(180deg, #fdf5f6 0%, #f6eaed 100%);
	color: #8f3446;
}
.admin-log-file-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	max-height: 460px;
	overflow-y: auto;
	padding-right: 4px;
}
.admin-log-file-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 14px 15px;
	border: 1px solid var(--admin-log-line);
	border-left: 3px solid transparent;
	border-radius: 4px;
	background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
	cursor: pointer;
	transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.admin-log-file-row:hover {
	transform: translateY(-1px);
	border-color: #99acbd;
	border-left-color: var(--admin-log-accent);
	background: #fff;
	box-shadow: 0 12px 22px rgba(23, 50, 74, 0.08);
}
.admin-log-file-row-active {
	border-color: #9caec0;
	border-left-color: var(--admin-log-accent-warm);
	background: linear-gradient(90deg, #f4f6f8 0%, #ffffff 100%);
}
.admin-log-file-main {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.admin-log-mode-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.admin-log-entry-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.admin-log-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	padding-bottom: 0;
	min-width: 0;
}
.admin-log-crumb {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: #22445f;
	font-size: 0.96rem;
	font-weight: 600;
	cursor: pointer;
	border-bottom: 1px solid transparent;
}
.admin-log-crumb:hover {
	color: var(--admin-log-accent);
	border-bottom-color: #9db3c4;
}
.admin-log-crumb-active {
	background: transparent;
	color: #122b3d;
	cursor: default;
	border-bottom-color: var(--admin-log-accent-warm);
}
.admin-log-crumb-sep {
	color: #6b8296;
	font-size: 0.92rem;
	font-weight: 700;
}
.admin-log-reader-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.admin-log-reader-copy {
	color: #40586e;
	font-size: 0.92rem;
	line-height: 1.45;
}
.admin-log-back-btn {
	background: linear-gradient(180deg, #f7fafc 0%, #e8eef3 100%);
	border-color: #c5d0da;
	color: #19384f;
}
.admin-log-empty {
	padding: 14px;
	border: 1px dashed #c8d6e2;
	border-radius: 4px;
	background: linear-gradient(180deg, #fbfcfd 0%, #f4f7f9 100%);
	color: #5a7084;
	font-size: 0.92rem;
}
.admin-log-empty-large {
	padding: 28px 20px;
	text-align: center;
}
.admin-log-lines {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
	text-align: left;
}
.admin-log-raw-block {
	margin: 0;
	padding: 18px 20px;
	border: 1px solid #d2d9df;
	border-left: 4px solid var(--admin-log-accent);
	border-radius: 4px;
	background:
		repeating-linear-gradient(180deg, rgba(28, 55, 78, 0.048) 0, rgba(28, 55, 78, 0.048) 1px, transparent 1px, transparent 31px),
		linear-gradient(140deg, rgba(26, 83, 124, 0.08) 0%, rgba(26, 83, 124, 0) 24%),
		linear-gradient(180deg, #fbfaf7 0%, #eef2f5 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 18px 30px rgba(23, 50, 74, 0.08);
	color: #1d3446;
	font-size: 0.86rem;
	line-height: 1.72;
	white-space: pre;
	word-break: normal;
	overflow-wrap: normal;
	overflow-x: auto;
	overflow-y: auto;
	text-align: left;
	tab-size: 4;
	font-family: Consolas, "SFMono-Regular", "Courier New", Courier, monospace;
}
.admin-log-toolbox-inner .admin-log-section + .admin-log-section {
	padding-top: 14px;
	border-top: 1px solid #e1e7ec;
}
.admin-log-line,
.admin-log-match-row {
	border: 1px solid #d7e2ec;
	border-radius: 14px;
	background: #fbfdff;
}
.admin-log-match-row {
	cursor: pointer;
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.admin-log-match-row:hover {
	transform: translateY(-1px);
	border-color: #7692ac;
	box-shadow: 0 10px 24px rgba(24, 43, 60, 0.1);
}
.admin-log-line {
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr);
	gap: 0;
	overflow: hidden;
}
.admin-log-line-num {
	padding: 12px 10px;
	border-right: 1px solid #d7e2ec;
	background: #f2f7fb;
	color: #32506a;
	font-size: 0.84rem;
	font-weight: 800;
	text-align: right;
}
.admin-log-line-text {
	margin: 0;
	padding: 12px 14px;
	color: #1e3348;
	font-size: 0.84rem;
	line-height: 1.45;
	white-space: pre-wrap;
	word-break: break-word;
	font-family: "Courier New", Courier, monospace;
}
.admin-log-line-match .admin-log-line-num {
	background: #e8f2fc;
	color: #21578e;
}
.admin-log-inline-title {
	margin-bottom: 4px;
}
.admin-log-tool-nav .nav_wrap {
	justify-content: flex-start;
}

@media (max-width: 980px) {
	.admin-log-layout {
		grid-template-columns: 1fr;
	}
	.admin-log-toolbox {
		position: static;
	}
}

@media (max-width: 768px) {
	.admin-log-toolbox-inner {
		padding: 14px;
	}
	.admin-log-toolbar-main {
		align-items: stretch;
	}
	.admin-log-mode-switch {
		width: 100%;
	}
	.admin-log-mode-switch .admin-log-btn {
		flex: 1 1 0;
		min-width: 0;
	}
	.admin-log-path-strip {
		padding: 12px 14px;
	}
	.admin-log-path-kicker {
		min-width: 100%;
		padding-top: 0;
	}
	.admin-log-file-list {
		max-height: 320px;
	}
	.admin-log-line {
		grid-template-columns: 1fr;
	}
	.admin-log-line-num {
		border-right: 0;
		border-bottom: 1px solid #d7e2ec;
		text-align: left;
	}
	.admin-log-toolbox .admin-log-btn,
	.admin-log-chip {
		width: 100%;
	}
	.admin-log-window-actions,
	.admin-log-inline-actions,
	.admin-log-chip-row,
	.admin-log-mode-row,
	.admin-log-title-row,
	.admin-log-panel-meta {
		width: 100%;
	}
}

.nav_info { text-align: center; font-size: .72em; color: #a0aec0; padding-top: 2px; letter-spacing: .02em; }
.nav_info.nav_hidden { display: none; }
.nav_info span { display: inline; }

/* Higher Denver 2026 skin: site shell, auth, public pages, and admin surfaces. */
:root {
	--hd-page: #f4f6f3;
	--hd-paper: #ffffff;
	--hd-paper-soft: #f8faf7;
	--hd-ink: #17201c;
	--hd-muted: #60706a;
	--hd-line: #d8e0da;
	--hd-line-strong: #b8c4bc;
	--hd-green: #174f3d;
	--hd-green-soft: #e5f0ea;
	--hd-teal: #28716a;
	--hd-copper: #b86b3f;
	--hd-gold: #d6a846;
	--hd-danger: #b94343;
	--hd-shadow: 0 16px 40px rgba(23, 32, 28, 0.12);
	--hd-shadow-soft: 0 8px 24px rgba(23, 32, 28, 0.08);
	--hd-radius: 8px;
	--hd-radius-sm: 5px;
	--hd-header-h: 72px;
}

html {
	background: var(--hd-page);
	scrollbar-color: var(--hd-green) #e6ebe7;
}

body {
	margin: 0;
	min-width: 320px;
	background:
		linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(244,246,243,0.98) 46%, #eef3ef 100%);
	color: var(--hd-ink);
	font-family: "Inter", "Open Sans", Arial, sans-serif;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body::-webkit-scrollbar { width: 10px; }
body::-webkit-scrollbar-track { background: #e6ebe7; }
body::-webkit-scrollbar-thumb {
	background: var(--hd-green);
	border: 2px solid #e6ebe7;
	border-radius: 8px;
}

a,
u {
	color: var(--hd-green);
	text-decoration: none !important;
}

a:hover,
.lnk_0:hover,
.lnk_tshdw:hover {
	color: var(--hd-copper);
	text-shadow: none;
}

.container {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
	padding: 20px 0;
	box-sizing: border-box;
}

#site-header,
header {
	min-height: var(--hd-header-h);
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid rgba(216, 224, 218, 0.94);
	box-shadow: 0 10px 30px rgba(23, 32, 28, 0.08);
	backdrop-filter: blur(14px);
}

.nav-container {
	min-height: var(--hd-header-h);
	padding: 0;
	gap: 18px;
}

.logo {
	color: var(--hd-ink);
	font-family: "Inter", "Open Sans", Arial, sans-serif;
	font-size: 1.15rem;
	font-weight: 850;
	line-height: 1.1;
	white-space: nowrap;
}

.logo::after {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-left: 9px;
	border-radius: 50%;
	background: var(--hd-copper);
	vertical-align: 0.16em;
}

nav {
	display: flex;
	align-items: center;
	min-width: 0;
}

nav ul,
#nav-list {
	gap: 4px;
	margin: 0;
	padding: 0;
}

nav ul li {
	margin-left: 0;
}

.menu-button-underlined,
nav a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 12px;
	border-radius: var(--hd-radius-sm);
	color: var(--hd-muted);
	font-size: 0.91rem;
	font-weight: 750;
	line-height: 1;
	white-space: nowrap;
}

.menu-button-underlined::before,
.menu-button-underlined::after {
	display: none;
}

.menu-button-underlined:hover,
.menu-button-underlined.selected,
nav a:hover {
	background: var(--hd-green-soft);
	color: var(--hd-green);
	text-shadow: none;
}

.header-shell-tools {
	gap: 10px;
	min-width: 0;
}

.menu-account-shell {
	min-width: 0;
}

.menu-toggle {
	width: 42px;
	height: 42px;
	border: 1px solid var(--hd-line);
	border-radius: var(--hd-radius-sm);
	background: var(--hd-paper);
	color: var(--hd-green);
	box-shadow: var(--hd-shadow-soft);
	font-size: 1.4rem;
	line-height: 1;
}

#ic.container,
#ic.container.flex-container {
	width: min(1180px, calc(100% - 40px));
	min-height: calc(100vh - var(--hd-header-h));
	padding-top: calc(var(--hd-header-h) + 28px);
	padding-bottom: 46px;
}

.hero,
.public-page-hero {
	position: relative;
	min-height: 360px;
	margin: 0 0 28px;
	padding: 72px 0 58px;
	border: 1px solid var(--hd-line);
	border-radius: var(--hd-radius);
	background:
		linear-gradient(135deg, rgba(23,79,61,0.96) 0%, rgba(31,92,80,0.93) 48%, rgba(184,107,63,0.9) 100%);
	box-shadow: var(--hd-shadow);
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 52%;
	background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.13) 100%);
	pointer-events: none;
}

.hero-content {
	position: relative;
	width: min(940px, calc(100% - 40px));
	padding: 0;
	color: #fff;
	text-align: left;
}

.hero-content h1 {
	margin: 0 0 14px;
	color: #fff;
	font-size: 2.85rem;
	font-weight: 900;
	line-height: 1.04;
	letter-spacing: 0;
}

.hero-content p {
	max-width: 680px;
	margin: 0;
	color: rgba(255,255,255,0.88);
	font-size: 1.05rem;
	line-height: 1.62;
}

.public-page-shell section,
.public-page-list li,
.login-container,
.register-container,
.login-menu-panel,
.ver-panel,
.ver-card,
.admin-log-toolbox,
.admin-log-window,
.admin-setting-row,
.msg_detail_shell,
.msg_wgt_thread,
.wgt_wrap {
	border-color: var(--hd-line);
	border-radius: var(--hd-radius);
	background-color: var(--hd-paper);
	box-shadow: var(--hd-shadow-soft);
}

.public-page-shell section {
	margin-bottom: 18px;
	padding: 22px;
}

.public-page-shell .public-page-hero {
	padding: 64px 0 56px;
}

.section-title,
.login-header,
.admin-log-title,
.admin-setting-title,
.msg_detail_title {
	color: var(--hd-ink);
	font-weight: 850;
	line-height: 1.15;
	letter-spacing: 0;
}

.block-content,
.public-page-list li,
.login-success-note,
.admin-log-reader-copy,
.msg_detail_body,
.msg_thrd_body {
	color: var(--hd-muted);
	line-height: 1.58;
}

.public-page-list {
	display: grid;
	gap: 10px;
	margin: 16px 0 0;
	padding: 0;
}

.public-page-list li {
	position: relative;
	padding: 13px 14px 13px 34px;
	list-style: none;
}

.public-page-list li::before {
	content: "";
	position: absolute;
	left: 14px;
	top: 20px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--hd-copper);
}

.login-menu-avatar,
.env-btn,
.cog-btn,
.shell-menu-toggle,
.nav_arrow {
	border-radius: 50%;
	background: var(--hd-paper);
	border: 1px solid var(--hd-line);
	color: var(--hd-green);
	box-shadow: var(--hd-shadow-soft);
}

.login-menu-avatar:hover,
.env-btn:hover,
.cog-btn:hover,
.nav_arrow:hover,
.shell-menu-toggle:hover {
	background: var(--hd-green-soft);
	border-color: var(--hd-line-strong);
	color: var(--hd-green);
	box-shadow: var(--hd-shadow);
}

.login-menu-panel {
	top: calc(var(--hd-header-h) - 2px);
	border: 1px solid var(--hd-line);
	padding: 12px;
}

.login-menu-body {
	color: var(--hd-ink);
}

.login-container,
.register-container {
	max-width: 460px;
	border: 1px solid var(--hd-line);
	padding: 24px;
}

.form-field-container {
	gap: 7px;
	margin-bottom: 14px;
	padding: 0;
}

.form-field-title {
	padding: 0;
	color: var(--hd-muted);
	font-size: 0.88rem;
	font-weight: 800;
}

.form-field {
	min-width: 0;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="password"],
.form-field input[type="tel"],
.form-field input[type="number"],
.form-field textarea,
.admin-form-grid input,
.admin-form-grid select,
.admin-form-grid textarea,
.admin-log-input,
.admin-select-input,
.admin-webset-input {
	width: 100%;
	min-height: 42px;
	border: 1px solid var(--hd-line);
	border-radius: var(--hd-radius-sm);
	background: #fff;
	color: var(--hd-ink);
	font: inherit;
	box-shadow: inset 0 1px 2px rgba(23, 32, 28, 0.05);
	box-sizing: border-box;
}

.form-field input:focus,
.form-field textarea:focus,
.admin-form-grid input:focus,
.admin-form-grid select:focus,
.admin-form-grid textarea:focus,
.admin-log-input:focus,
.admin-select-input:focus,
.admin-webset-input:focus {
	outline: 2px solid rgba(40, 113, 106, 0.24);
	outline-offset: 2px;
	border-color: var(--hd-teal);
	box-shadow: 0 0 0 4px rgba(40, 113, 106, 0.11);
}

.form-error {
	border-radius: var(--hd-radius-sm);
	color: var(--hd-danger);
	background: #fff4f4;
}

.admin-log-toolbox,
.admin-log-window,
.admin-inline-form-band,
.admin-page-access-inline-form {
	border-radius: var(--hd-radius);
	background: var(--hd-paper);
}

.admin-log-crumb,
.admin-log-btn,
.admin-log-chip,
.msg_btn,
.nav_box,
.admin-setting-action,
.admin-inline-form-actions button {
	border-radius: var(--hd-radius-sm);
}

.admin-log-raw-block {
	border-color: var(--hd-line);
	border-left-color: var(--hd-copper);
	border-radius: var(--hd-radius);
	background:
		repeating-linear-gradient(180deg, rgba(23,32,28,0.035) 0, rgba(23,32,28,0.035) 1px, transparent 1px, transparent 31px),
		linear-gradient(180deg, #fffdfa 0%, #f2f5f1 100%);
	color: #213128;
}

#site-footer,
footer {
	width: 100%;
	border-top: 1px solid var(--hd-line);
	background: #f9fbf8;
	color: var(--hd-muted);
}

#site-footer.container {
	width: 100%;
	max-width: none;
	padding: 24px max(20px, calc((100vw - 1180px) / 2));
	box-sizing: border-box;
}

#site-footer a {
	color: var(--hd-green);
	font-weight: 750;
}

@media (max-width: 900px) {
	.nav-container {
		width: min(100% - 28px, 1180px);
	}
	nav ul {
		top: var(--hd-header-h);
		height: calc(100vh - var(--hd-header-h));
		padding: 18px;
		background: rgba(255,255,255,0.98);
		border-left: 1px solid var(--hd-line);
		box-shadow: -18px 0 40px rgba(23, 32, 28, 0.13);
	}
	nav ul li,
	nav a,
	.menu-button-underlined {
		width: 100%;
		justify-content: flex-start;
	}
	.header-shell-tools {
		margin-left: auto;
	}
	#ic.container,
	#ic.container.flex-container {
		width: min(100% - 28px, 1180px);
		padding-top: calc(var(--hd-header-h) + 18px);
	}
	.hero,
	.public-page-hero {
		min-height: 300px;
		padding: 48px 0 42px;
	}
	.hero-content h1 {
		font-size: 2.1rem;
	}
	.public-page-shell section {
		padding: 18px;
	}
}

@media (max-width: 560px) {
	:root { --hd-header-h: 64px; }
	.container,
	#ic.container,
	#ic.container.flex-container {
		width: min(100% - 22px, 1180px);
	}
	.logo {
		font-size: 1rem;
		max-width: 48vw;
		overflow-wrap: anywhere;
		white-space: normal;
	}
	.hero-content {
		width: min(100% - 28px, 940px);
	}
	.hero-content h1 {
		font-size: 1.72rem;
	}
	.hero-content p {
		font-size: 0.98rem;
	}
	.login-container,
	.register-container {
		padding: 18px;
	}
	#site-footer.container {
		padding-left: 14px;
		padding-right: 14px;
	}
}
