/**
 * Global header / footer / logged-in toolbar — matches landing visual language.
 */

:root {
	--tm-c-bg: #0f172a;
	--tm-c-surface: #ffffff;
	--tm-c-surface2: #f1f5f9;
	--tm-c-accent: #14b8a6;
	--tm-c-accent2: #f97316;
	--tm-c-text: #0f172a;
	--tm-c-muted: #64748b;
	--tm-c-border: #e2e8f0;
	--tm-c-footer-bg: #1e293b;
	--tm-c-footer-text: #cbd5e1;
	/* Header dark strip — charcoal-teal aligned with landing hero */
	--tm-header-bg: linear-gradient(135deg, #0a1f1d 0%, #0f172a 48%, #0c2422 100%);
	--tm-header-teal: #2dd4bf;
	--tm-header-edge: rgba(255, 255, 255, 0.08);
}


/* Legacy wrapper around top.php — avoid white band behind dark header */
div.top {
	background: transparent !important;
}

.tm-site-header {
	font-family: "DM Sans", system-ui, sans-serif;
	background: var(--tm-header-bg);
	border-bottom: 1px solid var(--tm-header-edge);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
	color: #e2e8f0;
}

.tm-site-header__inner {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0.85rem clamp(1rem, 3vw, 1.5rem) 0;
}

.tm-site-header__top {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem 1.5rem;
	padding-bottom: 0.75rem;
}

.tm-site-brand {
	min-width: 0;
}

.tm-site-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	font-family: "DM Sans", system-ui, sans-serif;
	font-weight: 700;
	font-size: clamp(1.35rem, 2.8vw, 1.85rem);
	letter-spacing: -0.02em;
	line-height: 1;
	text-decoration: none !important;
	color: inherit;
}

.tm-site-logo:hover {
	opacity: 0.92;
}

.tm-site-logo:focus-visible {
	outline: 2px solid var(--tm-header-teal);
	outline-offset: 4px;
	border-radius: 10px;
}

.tm-site-logo__icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	filter: drop-shadow(0 0 12px rgba(45, 212, 191, 0.35));
}

.tm-site-logo__icon svg,
.tm-site-logo__icon img {
	display: block;
	width: clamp(2rem, 4.5vw, 2.55rem);
	height: auto;
	aspect-ratio: 1;
	object-fit: contain;
}

.tm-site-logo__wordmark {
	display: inline-flex;
	align-items: baseline;
	white-space: nowrap;
}

.tm-site-logo__class {
	color: #ffffff;
}

.tm-site-logo__eka {
	color: var(--tm-header-teal);
}

.tm-site-tagline {
	margin: 0.35rem 0 0;
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: rgba(248, 250, 252, 0.52);
}

.tm-site-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.35rem 0.65rem;
	font-size: 0.82rem;
}

.tm-site-meta__sep {
	color: rgba(248, 250, 252, 0.28);
	user-select: none;
}

.tm-lang-btn {
	font-family: inherit;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 0.35rem 0.65rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.06);
	color: #e2e8f0;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.tm-lang-btn:hover {
	border-color: rgba(45, 212, 191, 0.55);
	background: rgba(20, 184, 166, 0.12);
	color: #fff;
}

.tm-site-meta__link {
	color: rgba(226, 232, 240, 0.88);
	font-weight: 600;
	text-decoration: none !important;
	padding: 0.35rem 0.45rem;
	border-radius: 6px;
	transition: color 0.15s ease, background 0.15s ease;
}

.tm-site-meta__link:hover {
	color: var(--tm-header-teal);
	background: rgba(45, 212, 191, 0.1);
}

.tm-site-meta__user {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	max-width: 9.5rem;
}

.tm-site-meta__user-icon {
	flex: 0 0 auto;
	opacity: 0.92;
}

.tm-site-meta__user-name {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.tm-site-nav-wrap {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(0, 0, 0, 0.22);
}

.tm-site-nav {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0.3rem clamp(1rem, 3vw, 1.5rem) 0.4rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem 0.4rem;
	justify-content: flex-start;
	align-items: stretch;
}

.tm-site-nav__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0.28rem 0.72rem;
	border-radius: 999px;
	font-size: 0.875rem;
	font-weight: 600;
	color: rgba(248, 250, 252, 0.92);
	text-decoration: none !important;
	border: 1px solid transparent;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.tm-site-nav__link:hover {
	background: rgba(45, 212, 191, 0.12);
	border-color: rgba(45, 212, 191, 0.35);
	color: #fff;
}

.tm-site-nav__link .tm-site-nav__label {
	text-align: center;
	line-height: 1.25;
}

.tm-site-header-accent {
	height: 3px;
	width: 100%;
	max-width: none;
	margin: 0;
	background: linear-gradient(90deg, var(--tm-c-accent), var(--tm-header-teal), var(--tm-c-accent2));
}

.tm-site-submenu-wrap {
	font-family: "DM Sans", system-ui, sans-serif;
	background: var(--tm-c-bg);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tm-site-submenu-inner {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0.3rem clamp(1rem, 3vw, 1.5rem);
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.tm-submenu {
	display: flex;
	flex-wrap: nowrap;
	gap: 0.3rem 0.5rem;
	align-items: center;
	min-height: 34px;
}

.tm-submenu__link {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	padding: 0.28rem 0.55rem;
	border-radius: 999px;
	font-size: 0.74rem;
	font-weight: 600;
	color: #2dd4bf !important;
	text-decoration: none !important;
	border: 1px solid rgba(45, 212, 191, 0.30);
	background: rgba(255, 255, 255, 0.04);
	white-space: nowrap;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.tm-submenu__link:hover {
	background: rgba(20, 184, 166, 0.22);
	border-color: rgba(20, 184, 166, 0.45);
	color: #fff !important;
}

.tm-submenu__link--action {
	border-color: rgba(249, 115, 22, 0.45);
	background: rgba(249, 115, 22, 0.15);
}

.tm-submenu__link--action:hover {
	background: rgba(249, 115, 22, 0.28);
}

/* Inline login widget (index sidebar, Kill_Session reload, etc.) */
.tm-login-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: 0;
	padding: 0;
	font-family: "DM Sans", system-ui, sans-serif;
}

.tm-login-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.tm-login-form__field label {
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--tm-c-muted);
}

.tm-login-form input[type="text"],
.tm-login-form input[type="password"] {
	width: 100%;
	min-height: 42px !important;
	height: auto !important;
	padding: 0.5rem 0.75rem !important;
	border: 1px solid var(--tm-c-border) !important;
	border-radius: 8px !important;
	font-family: inherit !important;
	font-size: 0.95rem !important;
	background: var(--tm-c-surface) !important;
	color: var(--tm-c-text) !important;
	box-sizing: border-box;
}

.tm-login-form input[type="text"]:focus,
.tm-login-form input[type="password"]:focus {
	outline: 2px solid rgba(20, 184, 166, 0.35);
	outline-offset: 1px;
	border-color: var(--tm-c-accent) !important;
}

.tm-login-form__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.tm-login-submit {
	flex: 1 1 auto;
	min-width: 100px;
	min-height: 44px;
	padding: 0.5rem 1.25rem;
	border: none;
	border-radius: 999px;
	font-family: inherit;
	font-size: 0.92rem;
	font-weight: 600;
	cursor: pointer;
	background: linear-gradient(135deg, var(--tm-c-accent), #0d9488);
	color: #fff !important;
	box-shadow: 0 6px 20px rgba(20, 184, 166, 0.3);
	transition: box-shadow 0.15s ease, transform 0.1s ease;
}

.tm-login-submit:hover {
	box-shadow: 0 8px 26px rgba(20, 184, 166, 0.4);
}

.tm-login-submit:active {
	transform: scale(0.98);
}

.tm-login-form__register {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	padding-top: 0.25rem;
	border-top: 1px dashed var(--tm-c-border);
	margin-top: 0.15rem;
}

.tm-login-form__hint {
	margin: 0;
	font-size: 0.82rem;
	color: var(--tm-c-muted);
	line-height: 1.4;
}

.tm-login-register {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 42px;
	padding: 0.45rem 1rem;
	border-radius: 999px;
	font-family: inherit;
	font-size: 0.88rem;
	font-weight: 600;
	text-decoration: none !important;
	text-align: center;
	box-sizing: border-box;
	border: 2px solid rgba(249, 115, 22, 0.65);
	background: transparent;
	color: var(--tm-c-accent2) !important;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.tm-login-register:hover {
	background: rgba(249, 115, 22, 0.1);
	border-color: var(--tm-c-accent2);
	color: #c2410c !important;
}

/* Logged-in account shortcuts (home sidebar) */
.tm-session-panel {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	margin: 0;
	min-height: 12.5rem;
	font-family: "DM Sans", system-ui, sans-serif;
}

.tm-session-panel__hello {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	padding-bottom: 0.55rem;
	border-bottom: 1px solid var(--tm-c-border, #e2e8f0);
}

.tm-session-panel__hello-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	background: rgba(20, 184, 166, 0.12);
	color: var(--tm-c-accent, #0d9488);
	flex: 0 0 auto;
}

.tm-session-panel__hello-text {
	min-width: 0;
	flex: 1 1 auto;
}

.tm-session-panel__welcome {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--tm-c-text, #0f172a);
	line-height: 1.3;
}

.tm-session-panel__email {
	margin: 0.15rem 0 0;
	font-size: 0.78rem;
	color: var(--tm-c-muted, #64748b);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.tm-session-panel__nav {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.tm-session-panel__link,
.tm-session-panel__logout {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	width: 100%;
	margin: 0;
	padding: 0.35rem 0.4rem;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: var(--tm-c-text, #0f172a);
	font: inherit;
	font-size: 0.88rem;
	font-weight: 600;
	text-align: left;
	text-decoration: none !important;
	cursor: pointer;
	box-sizing: border-box;
	transition: background 0.15s ease, color 0.15s ease;
}

.tm-session-panel__link:hover,
.tm-session-panel__logout:hover {
	background: rgba(20, 184, 166, 0.08);
	color: var(--tm-c-accent, #0d9488);
}

.tm-session-panel__link-icon {
	display: inline-flex;
	color: var(--tm-c-accent, #0d9488);
	flex: 0 0 auto;
	opacity: 0.95;
}

.tm-session-panel__logout {
	margin-top: 0.15rem;
	padding-top: 0.55rem;
	border-top: 1px dashed var(--tm-c-border, #e2e8f0);
	color: #b45309;
}

.tm-session-panel__logout:hover {
	color: #c2410c;
	background: rgba(249, 115, 22, 0.08);
}

.tm-session-panel__logout .tm-session-panel__link-icon {
	color: inherit;
}

.tm-session-panel__alert {
	padding: 0.65rem 0.75rem;
	border-radius: 10px;
	background: rgba(249, 115, 22, 0.08);
	border: 1px solid rgba(249, 115, 22, 0.28);
	color: #9a3412;
	font-size: 0.86rem;
	line-height: 1.4;
}

.tm-session-panel__alert p {
	margin: 0 0 0.35rem;
}

.tm-session-panel__alert p:last-child {
	margin-bottom: 0;
}

.tm-session-panel__alert-link {
	color: #0d9488;
	font-weight: 700;
	text-decoration: underline;
}

.tm-session-panel--incomplete {
	justify-content: space-between;
}

/* Footer */
.tm-site-footer {
	font-family: "DM Sans", system-ui, sans-serif;
	background: var(--tm-c-footer-bg);
	color: var(--tm-c-footer-text);
	margin-top: 0;
}

.tm-site-footer a {
	color: #5eead4;
	text-decoration: none !important;
	font-weight: 600;
}

.tm-site-footer a:hover {
	color: #fcd34d;
	text-decoration: underline !important;
}

.tm-site-footer__inner {
	max-width: 1120px;
	margin: 0 auto;
	padding: 1.75rem clamp(1rem, 3vw, 1.5rem) 1.25rem;
}

.tm-footer-matrix-head {
	display: grid;
	grid-template-columns: minmax(140px, 1.2fr) repeat(3, minmax(110px, 1fr));
	gap: 0.5rem 1rem;
	padding-bottom: 0.5rem;
	margin-bottom: 0.35rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #94a3b8;
	min-width: min(100%, 680px);
}

.tm-footer-matrix-body {
	overflow-x: auto;
	margin-bottom: 1.25rem;
}

.tm-footer-matrix-row {
	display: grid;
	grid-template-columns: minmax(140px, 1.2fr) repeat(3, minmax(110px, 1fr));
	gap: 0.5rem 1rem;
	padding: 0.4rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 0.82rem;
	line-height: 1.35;
	min-width: min(100%, 680px);
}

.tm-footer-matrix-row:last-child {
	border-bottom: none;
}

.tm-site-footer__rule {
	height: 1px;
	background: rgba(255, 255, 255, 0.12);
	margin: 0.5rem 0 1rem;
}

.tm-site-footer__nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.35rem 0.75rem;
	font-size: 0.82rem;
	padding-bottom: 0.75rem;
}

.tm-site-footer__nav span {
	color: #64748b;
}

.tm-site-footer__copy {
	text-align: center;
	font-size: 0.78rem;
	color: #64748b;
	line-height: 1.5;
}

.tm-site-footer__copy a {
	color: #94a3b8;
	font-weight: 500;
}

@media (max-width: 640px) {
	.tm-site-meta {
		justify-content: flex-start;
		width: 100%;
	}

	.tm-footer-matrix-head,
	.tm-footer-matrix-row {
		grid-template-columns: minmax(120px, 1fr) repeat(3, minmax(90px, 1fr));
		font-size: 0.78rem;
	}
}

/* Registration page — Database/Entities/User/nRegister.php */
.tm-register-body {
	margin: 0;
	min-height: 100vh;
	background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 45%, #f8fafc 100%);
	font-family: "DM Sans", system-ui, sans-serif;
	color: var(--tm-c-text);
}

.tm-register-page {
	box-sizing: border-box;
	padding: clamp(1.25rem, 4vw, 2.5rem) clamp(1rem, 3vw, 1.5rem) 3rem;
	max-width: 1120px;
	margin: 0 auto;
}

.tm-register-page__inner {
	max-width: 560px;
	margin: 0 auto;
}

.tm-register-page__header {
	margin-bottom: 1.5rem;
}

.tm-register-page__header h1 {
	font-family: "Fraunces", Georgia, serif;
	font-weight: 700;
	font-size: clamp(1.65rem, 4vw, 2.25rem);
	letter-spacing: -0.02em;
	margin: 0 0 0.5rem;
	line-height: 1.15;
	color: var(--tm-c-text);
}

.tm-register-page__lead {
	margin: 0;
	font-size: 0.95rem;
	color: var(--tm-c-muted);
	line-height: 1.5;
}

.tm-register-card {
	background: var(--tm-c-surface);
	border: 1px solid var(--tm-c-border);
	border-radius: 14px;
	box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
	overflow: hidden;
}

.tm-register-card__title {
	margin: 0;
	padding: 1rem 1.35rem;
	font-size: 1rem;
	font-weight: 700;
	background: linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(249, 115, 22, 0.08));
	border-bottom: 1px solid var(--tm-c-border);
	color: var(--tm-c-text);
}

.tm-register-card__body {
	padding: 1.35rem 1.35rem 1.5rem;
}

.tm-register-form {
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
}

.tm-register-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.tm-register-form__field label {
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--tm-c-muted);
}

.tm-register-form__field input[type="text"],
.tm-register-form__field input[type="email"],
.tm-register-form__field input[type="password"],
.tm-register-form__field select,
.tm-register-form__field textarea {
	width: 100%;
	max-width: 100%;
	min-height: 42px !important;
	height: auto !important;
	padding: 0.5rem 0.75rem !important;
	border: 1px solid var(--tm-c-border) !important;
	border-radius: 8px !important;
	font-family: inherit !important;
	font-size: 0.95rem !important;
	background: var(--tm-c-surface) !important;
	color: var(--tm-c-text) !important;
	box-sizing: border-box;
}

.tm-register-form__field select {
	cursor: pointer;
}

.tm-register-form__field textarea {
	min-height: 8rem !important;
	resize: vertical;
}

.tm-register-form__field input:focus,
.tm-register-form__field select:focus,
.tm-register-form__field textarea:focus {
	outline: 2px solid rgba(20, 184, 166, 0.35);
	outline-offset: 1px;
	border-color: var(--tm-c-accent) !important;
}

.tm-register-form .alert {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.8rem;
	font-weight: 600;
	color: #dc2626;
}

.tm-register-form .okalert {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.8rem;
	font-weight: 600;
	color: #059669;
}

.tm-register-form__captcha-label {
	font-size: 0.85rem;
	color: var(--tm-c-text);
	line-height: 1.45;
	margin: 0 0 0.5rem;
	font-weight: 500;
}

.tm-register-form__captcha-row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 0.35rem;
}

.tm-register-captcha__img {
	min-width: 180px;
	min-height: 54px;
	border-radius: 8px;
	border: 1px solid var(--tm-c-border);
	background-color: var(--tm-c-surface2);
	background-size: cover;
	background-position: center;
	flex: 0 0 auto;
}

.tm-register-captcha__refresh {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid var(--tm-c-border);
	border-radius: 8px;
	background: var(--tm-c-surface2);
	cursor: pointer;
	font-size: 1.15rem;
	line-height: 1;
	color: var(--tm-c-muted);
	transition: background 0.15s ease, color 0.15s ease;
}

.tm-register-captcha__refresh:hover {
	background: #e2e8f0;
	color: var(--tm-c-text);
}

.tm-register-form__terms {
	font-size: 0.85rem;
	line-height: 1.55;
	color: var(--tm-c-muted);
	margin: 0.25rem 0 0;
}

.tm-register-form__terms a {
	color: var(--tm-c-accent);
	font-weight: 600;
	text-decoration: none !important;
}

.tm-register-form__terms a:hover {
	text-decoration: underline !important;
}

.tm-register-form__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.35rem;
}

.tm-register-form__actions .tm-login-submit {
	flex: 1 1 auto;
	min-width: 140px;
}

.tm-register-form__hidden {
	display: none !important;
}

.tm-register-form__sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 640px) {
	.tm-register-card__body {
		padding: 1.1rem 1rem 1.35rem;
	}
}

/* Registration completion — Do_Register_User.php + AJAX handlers */
.tm-register-page--wide .tm-register-page__inner--wide {
	max-width: 720px;
}

/* Edit profile — Database/Entities/User/Edit_User.php */
.tm-edit-user-page {
	box-sizing: border-box;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.tm-edit-user-page .tm-edit-user-page__inner {
	max-width: min(960px, 100%);
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

.tm-edit-user-page__header {
	text-align: center;
	margin-bottom: 1.5rem;
	padding: 0 0.25rem;
}

.tm-edit-user-page__header h1 {
	font-family: "Fraunces", Georgia, serif;
	font-weight: 700;
	font-size: clamp(1.55rem, 3.5vw, 2rem);
	letter-spacing: -0.02em;
	margin: 0 0 0.45rem;
	line-height: 1.15;
	color: var(--tm-c-text);
}

.tm-edit-user-page__lead {
	margin: 0;
	font-size: 0.95rem;
	color: var(--tm-c-muted);
	line-height: 1.5;
}

.tm-edit-user-page__content {
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}

.tm-edit-user-page__content .tm-register-card {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-width: 100%;
}

.tm-edit-user-page__content > table {
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

.tm-edit-user-page > .tm-edit-user-page__inner > .tm-register-alert {
	text-align: center;
}

.tm-register-alert {
	border-radius: 12px;
	padding: 1rem 1.25rem;
	margin-bottom: 1.25rem;
	font-size: 0.92rem;
	line-height: 1.5;
}

.tm-register-alert p {
	margin: 0 0 0.35rem;
}

.tm-register-alert p:last-child {
	margin-bottom: 0;
}

.tm-register-alert--success {
	background: rgba(20, 184, 166, 0.12);
	border: 1px solid rgba(20, 184, 166, 0.35);
	color: var(--tm-c-text);
}

.tm-register-alert--error {
	background: rgba(239, 68, 68, 0.08);
	border: 1px solid rgba(239, 68, 68, 0.35);
	color: #991b1b;
}

.tm-register-alert--muted {
	background: var(--tm-c-surface2);
	border: 1px dashed var(--tm-c-border);
	color: var(--tm-c-muted);
}

.tm-register-alert__note {
	margin: 0.5rem 0 0 !important;
	font-size: 0.85rem;
	color: var(--tm-c-muted);
}

.tm-register-alert__ref {
	margin: 0.5rem 0 0 !important;
	font-size: 0.82rem;
	color: var(--tm-c-muted);
}

.tm-register-alert__ref code {
	font-size: 0.9em;
	padding: 0.15rem 0.35rem;
	border-radius: 4px;
	background: rgba(15, 23, 42, 0.06);
	color: var(--tm-c-text);
}

.tm-register-alert__link {
	color: var(--tm-c-accent);
	font-weight: 600;
	text-decoration: none !important;
}

.tm-register-alert__link:hover {
	text-decoration: underline !important;
}

.tm-register-account-summary__dl {
	display: grid;
	grid-template-columns: minmax(100px, 140px) 1fr;
	gap: 0.35rem 1rem;
	margin: 0;
	padding: 0;
	font-size: 0.92rem;
}

.tm-register-account-summary__dl dt {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--tm-c-muted);
}

.tm-register-account-summary__dl dd {
	margin: 0;
	font-weight: 600;
	color: var(--tm-c-text);
	word-break: break-word;
}

.tm-register-profile-wrap {
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px dashed var(--tm-c-border);
}

.tm-register-profile-wrap .button {
	border-radius: 999px;
	padding: 0.5rem 1.25rem;
	font-weight: 600;
	cursor: pointer;
	border: none;
	background: linear-gradient(135deg, var(--tm-c-accent), #0d9488);
	color: #fff !important;
	box-shadow: 0 6px 20px rgba(20, 184, 166, 0.25);
}

.tm-register-profile-wrap input[type="text"],
.tm-register-profile-wrap textarea {
	border-radius: 8px;
	border: 1px solid var(--tm-c-border) !important;
	font-family: inherit;
}

.tm-register-profile-wrap textarea {
	padding: 0.5rem 0.65rem;
}

/* Teacher profile form — Register_Teacher.php */
.tm-teacher-profile-card {
	margin-top: 0;
}

.tm-register-form__fieldset-label {
	display: block;
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--tm-c-muted);
	margin-bottom: 0.35rem;
}

.tm-teacher-profile-form__radios {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.5rem;
	align-items: center;
}

.tm-teacher-profile-form__radio-label {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.95rem;
	cursor: pointer;
	font-weight: 500;
	color: var(--tm-c-text);
}

.tm-teacher-profile-form__inline-check {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 0.45rem;
	margin-top: 0.55rem;
	font-size: 0.86rem;
	font-weight: 500;
	cursor: pointer;
	color: var(--tm-c-text);
	line-height: 1.4;
}

.tm-teacher-profile-form__inline-check input {
	margin-top: 0.2rem;
	flex-shrink: 0;
}

.tm-teacher-profile-form__translit-hint {
	font-size: 0.85rem;
	line-height: 1.55;
	color: var(--tm-c-muted);
	margin: 0 0 0.65rem;
}

.tm-teacher-profile-form__translit-hint a {
	color: var(--tm-c-accent);
	font-weight: 600;
	text-decoration: none !important;
}

.tm-teacher-profile-form__translit-hint a:hover {
	text-decoration: underline !important;
}

.tm-teacher-profile-form__translit-bar {
	margin-bottom: 1rem;
	min-height: 2rem;
}

.tm-teacher-profile-form textarea {
	width: 100%;
	max-width: 100%;
	min-height: 5.5rem;
	box-sizing: border-box;
	resize: vertical;
}

.tm-teacher-profile-form__actions {
	align-items: stretch;
}

.tm-teacher-profile-form__reset {
	flex: 0 0 auto;
	min-width: 100px;
	min-height: 44px;
	padding: 0.5rem 1.15rem;
	border-radius: 999px;
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	background: transparent !important;
	color: var(--tm-c-accent2) !important;
	border: 2px solid rgba(249, 115, 22, 0.65) !important;
	box-shadow: none !important;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.tm-teacher-profile-form__reset:hover {
	background: rgba(249, 115, 22, 0.1) !important;
	border-color: var(--tm-c-accent2) !important;
}

/* Public teacher profile — Database/Entities/Teacher/TeacherProfile.php */
.tm-teacher-profile-view__inner {
	max-width: 1120px;
	margin: 0 auto;
}

.tm-teacher-profile-view__header {
	margin-bottom: 1.25rem;
}

.tm-teacher-profile-view__header-top {
	margin-bottom: 0.85rem;
}

.tm-teacher-profile-view__header h1 {
	font-family: "Fraunces", Georgia, serif;
	font-weight: 700;
	font-size: clamp(1.5rem, 3.5vw, 2rem);
	letter-spacing: -0.02em;
	margin: 0 0 0.35rem;
	line-height: 1.2;
	color: var(--tm-c-text);
}

.tm-teacher-profile-view__lead {
	margin: 0;
	font-size: 0.95rem;
	color: var(--tm-c-muted);
}

.tm-teacher-profile-view__header-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	align-items: center;
	padding: 0.85rem 1rem;
	border-radius: 14px;
	background: linear-gradient(135deg, #0a1f1d 0%, #0f172a 55%, #0c2422 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.22);
}

.tm-teacher-profile-view__nav-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	min-height: 46px;
	padding: 0.55rem 1.2rem;
	border-radius: 999px;
	border: none;
	background: linear-gradient(135deg, var(--tm-c-accent), #0d9488);
	color: #fff !important;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	text-decoration: none !important;
	box-shadow: 0 6px 20px rgba(20, 184, 166, 0.35);
	transition: transform 0.12s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.tm-teacher-profile-view__nav-link:hover {
	color: #fff !important;
	filter: brightness(1.06);
	box-shadow: 0 8px 26px rgba(20, 184, 166, 0.48);
}

.tm-teacher-profile-view__nav-link:active {
	transform: scale(0.98);
}

.tm-teacher-profile-view__nav-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.55rem;
	padding: 0.12rem 0.45rem;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.28);
	border: 1px solid rgba(255, 255, 255, 0.22);
	font-size: 0.8rem;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	color: #fff;
}

.tm-teacher-profile-view__nav-link--accent {
	background: linear-gradient(135deg, var(--tm-c-accent2), #ea580c);
	box-shadow: 0 6px 20px rgba(249, 115, 22, 0.38);
}

.tm-teacher-profile-view__nav-link--accent:hover {
	color: #fff !important;
	filter: brightness(1.06);
	box-shadow: 0 8px 26px rgba(249, 115, 22, 0.5);
}

.tm-teacher-profile-view__layout {
	display: grid;
	grid-template-columns: minmax(140px, 200px) 1fr;
	gap: 1.5rem;
	align-items: start;
}

@media (max-width: 720px) {
	.tm-teacher-profile-view__layout {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}

	.tm-teacher-profile-view__details {
		text-align: left;
		width: 100%;
	}
}

.tm-teacher-profile-view__photo {
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--tm-c-border);
	background: var(--tm-c-surface2);
	box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
	min-height: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tm-teacher-profile-view__photo img {
	display: block;
	max-width: 100%;
	height: auto;
}

.tm-teacher-profile-view__details {
	display: grid;
	gap: 1rem;
}

.tm-teacher-profile-view__columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem 1.5rem;
}

@media (max-width: 900px) {
	.tm-teacher-profile-view__columns {
		grid-template-columns: 1fr;
	}
}

.tm-teacher-profile-view__dl {
	display: grid;
	grid-template-columns: minmax(90px, 110px) 1fr;
	gap: 0.35rem 0.75rem;
	margin: 0;
	font-size: 0.92rem;
}

.tm-teacher-profile-view__dl dt {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--tm-c-muted);
}

.tm-teacher-profile-view__dl dd {
	margin: 0;
	font-weight: 600;
	color: var(--tm-c-text);
	word-break: break-word;
}

.tm-teacher-profile-view__dl dd.tm-teacher-profile-view__wide {
	grid-column: 1 / -1;
	font-weight: 500;
}

.tm-teacher-profile-view__pre {
	margin: 0;
	white-space: pre-wrap;
	word-break: break-word;
	font-family: inherit;
	font-size: 0.92rem;
	line-height: 1.55;
	color: var(--tm-c-text);
}

.tm-teacher-profile-view__toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	justify-content: center;
	padding: 0.85rem 0;
}

.tm-teacher-profile-view__toolbar a {
	font-weight: 600;
	font-size: 0.88rem;
	text-decoration: none !important;
	color: var(--tm-c-accent) !important;
	border-radius: 999px;
	padding: 0.35rem 0.85rem;
	background: rgba(20, 184, 166, 0.1);
	border: 1px solid rgba(20, 184, 166, 0.35);
	transition: background 0.15s ease;
}

.tm-teacher-profile-view__toolbar a:hover {
	background: rgba(20, 184, 166, 0.18);
}

.tm-teacher-profile-view__toolbar a.tm-teacher-profile-view__toolbar-btn--accent {
	color: #fff !important;
	border-color: transparent;
	background: linear-gradient(135deg, var(--tm-c-accent2), #ea580c);
	box-shadow: 0 6px 18px rgba(249, 115, 22, 0.3);
}

.tm-teacher-profile-view__toolbar a.tm-teacher-profile-view__toolbar-btn--accent:hover {
	background: linear-gradient(135deg, #fb923c, #ea580c);
	box-shadow: 0 8px 22px rgba(249, 115, 22, 0.4);
}

.tm-teacher-profile-view__metrics {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.25rem;
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), #1e293b);
	color: #f8fafc;
	border-radius: 12px;
	border: 1px solid rgba(148, 163, 184, 0.25);
}

.tm-teacher-profile-view__rating-num {
	font-family: "Fraunces", Georgia, serif;
	font-size: 2rem;
	font-weight: 700;
	color: var(--tm-c-accent);
	line-height: 1;
}

.tm-teacher-profile-view__links-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 1rem;
	font-size: 0.92rem;
}

.tm-teacher-profile-view__links-row a {
	color: #f8fafc !important;
	font-weight: 600;
	text-decoration: underline !important;
	text-underline-offset: 3px;
}

.tm-teacher-profile-view__links-row .tm-muted {
	color: rgba(248, 250, 252, 0.78);
	font-weight: 600;
}

.tm-teacher-profile-view__reco-panel {
	background: rgba(15, 23, 42, 0.35);
	border-radius: 12px;
	padding: 1.25rem 1.35rem;
	border: 1px solid rgba(148, 163, 184, 0.2);
	margin-top: 1rem;
}

.tm-teacher-profile-view__reco-panel .tm-teacher-profile-view__hint {
	font-size: 0.82rem;
	color: rgba(248, 250, 252, 0.82);
	line-height: 1.55;
	margin: 0 0 0.65rem;
}

.tm-teacher-profile-view__reco-panel textarea,
.tm-teacher-profile-view__reco-panel input[type="text"] {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	border-radius: 8px;
	border: 1px solid rgba(148, 163, 184, 0.45);
	padding: 0.5rem 0.65rem;
	font-family: inherit;
	font-size: 0.92rem;
	background: #fff;
	color: var(--tm-c-text);
}

.tm-teacher-profile-view__reco-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-top: 0.85rem;
}

.tm-teacher-profile-view__reco-actions .button {
	border-radius: 999px;
	padding: 0.45rem 1.25rem;
	font-weight: 600;
	cursor: pointer;
	border: none;
	background: linear-gradient(135deg, var(--tm-c-accent), #0d9488);
	color: #fff !important;
	box-shadow: 0 6px 20px rgba(20, 184, 166, 0.25);
}

.tm-teacher-profile-view__reco-actions .button#cancel_my_recon {
	background: transparent !important;
	color: #f8fafc !important;
	border: 2px solid rgba(248, 250, 252, 0.45) !important;
	box-shadow: none !important;
}

.tm-teacher-profile-view__share {
	padding: 1rem 1.25rem;
	border-top: 1px dashed var(--tm-c-border);
	margin-top: 0.5rem;
	font-size: 0.88rem;
	color: var(--tm-c-muted);
}

.tm-teacher-profile-view__results-area {
	min-height: 3rem;
}

.tm-teacher-profile-view__results-area #results {
	padding: 0.25rem 0 0.5rem;
}

.tm-teacher-profile-view__results-area .tm-class-cards {
	gap: 0.85rem;
}

.tm-teacher-profile-view__pager-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 0.75rem;
	padding: 0.65rem 1rem;
	font-size: 0.85rem;
	color: var(--tm-c-muted);
	border-top: 1px solid var(--tm-c-border);
	background: var(--tm-c-surface2);
}

.tm-teacher-profile-view #Paging_String,
.tm-teacher-profile-view #Rcon_Paging_String {
	color: var(--tm-c-accent2);
	font-weight: 600;
}

/* Tuition class profile — Tuition_Class_Profile.php (reuses tm-register-page + tm-register-card + teacher grid helpers) */
.tm-class-profile-view.tm-register-page {
	padding-bottom: 3rem;
}

.tm-class-profile-view__header {
	margin-bottom: 1.35rem;
}

.tm-class-profile-view__kicker {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--tm-c-accent);
	margin: 0 0 0.5rem;
	padding: 0.28rem 0.6rem;
	border-radius: 999px;
	border: 1px solid rgba(20, 184, 166, 0.35);
	background: rgba(20, 184, 166, 0.08);
}

.tm-class-profile-view__header h1 {
	font-family: "DM Sans", system-ui, sans-serif;
	font-weight: 700;
	font-size: clamp(1.6rem, 3.5vw, 2.1rem);
	letter-spacing: -0.02em;
	margin: 0 0 0.35rem;
	line-height: 1.15;
	color: var(--tm-c-text);
}

.tm-class-profile-view__subtitle {
	margin: 0;
	font-size: 1rem;
	color: var(--tm-c-muted);
}

.tm-class-profile-view__subtitle a {
	color: var(--tm-c-accent);
	font-weight: 700;
	text-decoration: none !important;
}

.tm-class-profile-view__subtitle a:hover {
	text-decoration: underline !important;
}

.tm-class-profile-card > .tm-register-card__title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.tm-class-profile-view__id-badge {
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--tm-c-muted);
	background: var(--tm-c-surface2);
	padding: 0.2rem 0.55rem;
	border-radius: 8px;
	border: 1px solid var(--tm-c-border);
	white-space: nowrap;
}

.tm-class-profile-view__columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem 1.75rem;
	align-items: start;
	width: 100%;
	min-width: 0;
}

@media (max-width: 900px) {
	.tm-class-profile-view__columns {
		grid-template-columns: 1fr;
	}
}

.tm-class-profile-view__accent {
	color: var(--tm-c-text);
	font-size: 1.05rem;
}

.tm-class-profile-view__teacher-link {
	color: var(--tm-c-accent);
	font-weight: 700;
	text-decoration: none !important;
}

.tm-class-profile-view__teacher-link:hover {
	text-decoration: underline !important;
}

.tm-class-profile-view__teacher-meta {
	display: block;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--tm-c-muted);
	margin-top: 0.2rem;
}

.tm-class-profile-view__inline-link {
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--tm-c-accent2);
	text-decoration: none !important;
}

.tm-class-profile-view__inline-link:hover {
	text-decoration: underline !important;
}

.tm-class-profile-schedule {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.86rem;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--tm-c-border);
	background: var(--tm-c-surface);
}

.tm-class-profile-schedule th,
.tm-class-profile-schedule td {
	padding: 0.45rem 0.55rem;
	text-align: left;
	border-bottom: 1px solid var(--tm-c-border);
	vertical-align: top;
}

.tm-class-profile-schedule thead th {
	background: linear-gradient(135deg, rgba(20, 184, 166, 0.14), rgba(15, 23, 42, 0.06));
	font-weight: 700;
	font-size: 0.76rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--tm-c-muted);
}

.tm-class-profile-schedule tbody tr:last-child td {
	border-bottom: none;
}

.tm-class-profile-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65rem;
	margin-top: 1.25rem;
	padding-top: 1.1rem;
	border-top: 1px dashed var(--tm-c-border);
}

.tm-class-profile-actions__form {
	margin: 0;
	display: inline-block;
}

.tm-class-profile-actions .tm-login-submit {
	box-sizing: border-box;
	min-height: 42px;
	cursor: pointer;
	border-radius: 999px;
}

a.tm-class-profile-actions__btn.tm-login-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	line-height: 1.2;
}

.tm-class-profile-actions__btn--secondary {
	background: transparent !important;
	color: var(--tm-c-accent2) !important;
	border: 2px solid rgba(249, 115, 22, 0.55) !important;
	box-shadow: none !important;
}

.tm-class-profile-actions__btn--secondary:hover {
	background: rgba(249, 115, 22, 0.08) !important;
}

.tm-class-profile-student-panel__status {
	margin: 0 0 0.75rem;
}

.tm-class-profile-share {
	margin-top: 1.25rem;
	padding-top: 1rem;
	border-top: 1px dashed var(--tm-c-border);
	font-size: 0.88rem;
	color: var(--tm-c-muted);
}

.tm-class-profile-share__label {
	margin: 0 0 0.5rem;
	font-weight: 700;
	color: var(--tm-c-text);
}

.tm-class-profile-banner {
	margin-top: 1rem;
	padding: 1rem 1.15rem;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.94), #1e293b);
	color: #e2e8f0;
	border: 1px solid rgba(148, 163, 184, 0.25);
	font-size: 0.88rem;
	line-height: 1.5;
}

.tm-class-profile-banner p {
	margin: 0 0 0.45rem;
}

.tm-class-profile-banner p:last-child {
	margin-bottom: 0;
}

.tm-class-profile-banner a {
	color: #5eead4 !important;
	font-weight: 700;
	text-decoration: underline !important;
	text-underline-offset: 3px;
}

.tm-class-profile-description {
	margin: 0;
	white-space: pre-wrap;
	word-break: break-word;
	font-family: inherit;
	font-size: 0.92rem;
	line-height: 1.55;
	color: var(--tm-c-text);
}

.tm-class-profile-card + .tm-class-profile-card {
	margin-top: 1.25rem;
}

.tm-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Standalone login page — LogIn.php */
.tm-login-page-card .tm-register-card__body {
	padding-top: 1rem;
}

.tm-login-page__error {
	margin-bottom: 1rem;
}

.tm-login-page__forgot {
	margin: 1rem 0 0;
	padding-top: 1rem;
	border-top: 1px dashed var(--tm-c-border);
	font-size: 0.9rem;
	text-align: center;
}

/* Profile picture upload — Manage_Profile_Picture.php */
.tm-profile-pic__rules {
	margin: 0 0 1.25rem;
	padding-left: 1.15rem;
	color: var(--tm-c-muted);
	font-size: 0.9rem;
	line-height: 1.55;
}

.tm-profile-pic__layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	align-items: start;
}

@media (min-width: 560px) {
	.tm-profile-pic__layout {
		grid-template-columns: 160px 1fr;
		gap: 1.75rem;
	}
}

.tm-profile-pic__preview-wrap {
	text-align: center;
}

.tm-profile-pic__preview {
	display: block;
	width: 160px;
	height: 160px;
	object-fit: cover;
	border-radius: 14px;
	border: 1px solid var(--tm-c-border);
	background: var(--tm-c-surface2);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
	margin: 0 auto;
}

.tm-profile-pic__hint {
	margin: 0.65rem 0 0;
	font-size: 0.85rem;
	color: var(--tm-c-muted);
	min-height: 1.2em;
}

.tm-profile-pic__hint--ok {
	color: #0f766e;
}

.tm-profile-pic__hint--error {
	color: #b91c1c;
}

.tm-profile-pic__file-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0.45rem 1.1rem;
	margin-bottom: 0.65rem;
	border-radius: 999px;
	border: 1px solid var(--tm-c-border);
	background: var(--tm-c-surface2);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--tm-c-text);
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.tm-profile-pic__file-label:hover {
	border-color: rgba(20, 184, 166, 0.55);
	background: rgba(20, 184, 166, 0.08);
}

.tm-profile-pic__file {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.tm-profile-pic__filename {
	margin: 0.5rem 0 1rem;
	font-size: 0.85rem;
	color: var(--tm-c-muted);
	word-break: break-all;
	min-height: 1.2em;
}

.tm-profile-pic__controls {
	position: relative;
}

.tm-profile-pic__controls .tm-register-form__actions {
	margin-top: 0.25rem;
}

