@import url(https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap);
@font-face {
  font-family: DonerRegular;
  src: url(/static/media/Doner-RegularText.ba9ab1d5394d74b3284f.otf) format("opentype");
}

:root {
  --white: #ffffff;
  --black: #000000;
  --bg-dark: #01000D;
  --sub-bg-dark: #161824;
  --sub-bg-light: #f0f1f2;
  --accent-1: #0D7AC7;
  --past: #0D7AC788;
  --success-green: #3CA259;
  --cancelled-red: #ff2626;
  --text-secondary: rgb(151, 163, 180);
  --text-muted: rgb(120, 132, 150);
  --border-soft: #2d2f39;
  --border-softer: rgba(255, 255, 255, 0.08);
  --font-family: 'DonerRegular', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'DonerRegular', sans-serif;
  font-family: var(--font-family);
}

html, body, #root {
  height: 100%;
  background-color: #01000D;
  background-color: var(--bg-dark);
  color: #ffffff;
  color: var(--white);
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button {
  cursor: pointer;
}

h1 { font-weight: 700; font-size: 34px; }
h2 { font-weight: 600; font-size: 28px; }
h3 { font-weight: 600; font-size: 24px; }
p, input { font-weight: 300; font-size: 15px; }

input:focus { outline: none; }

::-webkit-scrollbar { display: none; }

a { text-decoration: none; color: inherit; }

/* ── Ant Design Dark Overrides ── */

.ant-table {
  background: transparent !important;
}

.ant-table-wrapper .ant-table {
  background: transparent !important;
  color: #ffffff !important;
  color: var(--white) !important;
}

.ant-table-wrapper .ant-table-thead > tr > th,
.ant-table-wrapper .ant-table-thead > tr > td {
  background: rgba(255, 255, 255, 0.02) !important;
  color: #888 !important;
  border-bottom: 1px solid #2d2f39 !important;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ant-table-wrapper .ant-table-tbody > tr > td {
  border-bottom: 1px solid rgba(45, 47, 57, 0.4) !important;
  color: #ffffff !important;
  color: var(--white) !important;
  font-size: 14px;
}

.ant-table-wrapper .ant-table-tbody > tr:hover > td {
  background: rgba(255, 255, 255, 0.03) !important;
}

.ant-table-wrapper .ant-table-tbody > tr.ant-table-row:hover > td {
  background: rgba(255, 255, 255, 0.03) !important;
}

.ant-table-wrapper .ant-table-cell-row-hover {
  background: rgba(255, 255, 255, 0.03) !important;
}

.ant-pagination .ant-pagination-item {
  background: transparent !important;
  border-color: #2d2f39 !important;
}

.ant-pagination .ant-pagination-item a {
  color: #ffffff !important;
  color: var(--white) !important;
}

.ant-pagination .ant-pagination-item-active {
  background: #0D7AC7 !important;
  background: var(--accent-1) !important;
  border-color: #0D7AC7 !important;
  border-color: var(--accent-1) !important;
}

.ant-pagination .ant-pagination-item-active a {
  color: #ffffff !important;
  color: var(--white) !important;
}

.ant-select-dropdown {
  background: #161824 !important;
  background: var(--sub-bg-dark) !important;
  border: 1px solid #2d2f39 !important;
  border-radius: 10px !important;
}

.ant-select-item {
  color: #ffffff !important;
  color: var(--white) !important;
}

.ant-select-item-option-active {
  background: rgba(255, 255, 255, 0.04) !important;
}

.ant-select-item-option-selected {
  background: rgba(13, 122, 199, 0.15) !important;
}

.ant-modal .ant-modal-content {
  background: #161824 !important;
  background: var(--sub-bg-dark) !important;
  border: 1px solid #2d2f39 !important;
  border-radius: 16px !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.03) !important;
}

.ant-modal .ant-modal-header {
  background: transparent !important;
  border-bottom: 1px solid #2d2f39 !important;
}

.ant-modal .ant-modal-title {
  color: #ffffff !important;
  color: var(--white) !important;
}

.ant-modal .ant-modal-close {
  color: #888 !important;
}

.ant-modal .ant-modal-body {
  color: #ffffff !important;
  color: var(--white) !important;
}

.ant-tag {
  border-radius: 6px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
}

.ant-picker {
  background: rgba(255, 255, 255, 0.035) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 10px !important;
}

.ant-picker:hover,
.ant-picker:focus,
.ant-picker:focus-within {
  border-color: #0D7AC7 !important;
  border-color: var(--accent-1) !important;
  box-shadow: 0 0 0 3px rgba(13, 122, 199, 0.12) !important;
}

.ant-picker-dropdown {
  background: #161824 !important;
  background: var(--sub-bg-dark) !important;
}

.ant-empty-description {
  color: #555 !important;
}

/* Skeleton shine animation */
@keyframes shine {
  0% { background-position: -200px 0; }
  100% { background-position: calc(200px + 100%) 0; }
}

.shine-animation {
  background: linear-gradient(90deg, #161824 0px, #252836 40px, #161824 80px);
  background: linear-gradient(90deg, var(--sub-bg-dark) 0px, #252836 40px, var(--sub-bg-dark) 80px);
  background-size: 200px 100%;
  animation: shine 1.6s ease-in-out infinite;
}

/* ══════════════════════════════════════
   Sidebar - identical to client/src/components/Sidebar
   ══════════════════════════════════════ */

/* ── Outer wrapper ── */
.xD5ZBuaL {
	height: 100%;
	display: flex;
	align-items: stretch;
	column-gap: 6px;
	position: relative;
	flex-shrink: 0;
}

/* ── Floating card ── */
._YIbBXLv {
	width: 220px;
	height: calc(100% - 32px);
	margin: 16px 0 16px 16px;
	background-color: var(--sub-bg-dark);
	border: 1px solid #2d2f39;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	flex-shrink: 0;
}

.avWF_2yv {
	width: 68px;
}

/* ── Logo ── */
._ksZC2Je {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 16px 0;
	flex-shrink: 0;
	height: 56px;
}

._ksZC2Je a {
	display: flex;
	align-items: center;
}

._ksZC2Je img {
	display: block;
}

/* ── Navigation ── */
.al3n1fBE {
	flex: 1 1;
	display: flex;
	flex-direction: column;
	padding: 57px 0 8px;
	gap: 4px;
	overflow-y: auto;
	overflow-x: hidden;
}

.al3n1fBE::-webkit-scrollbar {
	width: 0;
}

/* ── Category ── */
.ao1xXVgZ {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.ieCjBqKW {
	margin: 0;
	padding: 6px 20px 4px;
	font-size: 11px;
	font-weight: 600;
	color: #555;
	text-transform: uppercase;
	letter-spacing: 1px;
	white-space: nowrap;
	overflow: hidden;
	height: 22px;
	box-sizing: border-box;
	transition: height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
}

.avWF_2yv .ieCjBqKW {
	height: 0;
	padding: 0 20px;
	opacity: 0;
}

.LhOMG9Io {
	height: 1px;
	background: #2d2f39;
	margin: 10px 16px;
	transition: margin 0.3s ease;
}

.avWF_2yv .LhOMG9Io {
	margin: 4px 16px;
}

/* ── Nav item ── */
.cKD_LKET {
	display: block;
	text-decoration: none;
	padding: 0 8px;
	background: none;
	border: none;
	width: 100%;
	cursor: pointer;
	color: inherit;
	font: inherit;
	text-align: left;
}

.T88GOITw {
	display: flex;
	align-items: center;
	height: 40px;
	border-radius: 10px;
	transition: background-color 0.2s ease;
	overflow: hidden;
}

.T88GOITw:hover {
	background-color: rgba(255, 255, 255, 0.04);
}

.lbRqA4W7 {
	background-color: var(--accent-1) !important;
}

.lbRqA4W7 .xLlUliId {
	color: var(--white);
}

.lbRqA4W7 .Stgzcck9 i {
	color: var(--white);
}

/* ── Icon ── */
.Stgzcck9 {
	width: 52px;
	min-width: 52px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	flex-shrink: 0;
}

.Stgzcck9 i {
	font-size: 22px;
	color: var(--white);
	transition: color 0.2s ease;
}

/* ── Label ── */
.xLlUliId {
	font-size: 15px;
	font-weight: 500;
	color: var(--white);
	white-space: nowrap;
	overflow: hidden;
	transition: opacity 0.3s ease, color 0.2s ease;
}

/* ── Logout button (bottom) ── */
.LiFA1eNP {
	display: flex;
	align-items: center;
	height: 44px;
	margin: 0 8px 8px;
	border-radius: 10px;
	background: none;
	border: none;
	cursor: pointer;
	color: inherit;
	font: inherit;
	text-align: left;
	transition: background-color 0.2s ease;
	flex-shrink: 0;
}

.LiFA1eNP:hover {
	background-color: rgba(239, 68, 68, 0.1);
}

.LiFA1eNP:hover .Stgzcck9 i {
	color: #ef4444;
}

.LiFA1eNP:hover .xLlUliId {
	color: #ef4444;
}

/* ── Text visibility transitions ── */
.NvRVF8GQ {
	opacity: 1;
	transition: opacity 0.3s ease;
	white-space: nowrap;
	overflow: hidden;
}

.M1sYstK3 {
	opacity: 0;
	transition: opacity 0.3s ease;
	white-space: nowrap;
	overflow: hidden;
}

.Rhi9Xnu9 {
	opacity: 0;
	width: 0;
	transition: opacity 0.3s ease, width 0.3s ease;
	white-space: nowrap;
	overflow: hidden;
	transition-delay: 0.2s;
}

/* ── Toggle bar ── */
.npjo1UpI {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.DUusLbxr {
	height: 2rem;
	cursor: pointer;
	transition: opacity 0.15s ease;
}

.DUusLbxr::after {
	content: '';
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	background: transparent;
}

.qSTznKde {
	opacity: 0.4;
}

.t0zHiJpw {
	height: 1rem;
	width: 0.25rem;
	background-color: var(--accent-1);
	border-radius: 9999px;
}

/* ══════════════════════════════════════
   Main container (admin layout)
   ══════════════════════════════════════ */

.vLx_apD1 {
	height: 100vh;
	width: 100%;
	display: flex;
	overflow: hidden;
	background-color: var(--bg-dark);
	color: var(--white);
}

.tdDeexuI {
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.BYuChkje {
	flex: 1 1;
	overflow-y: auto;
	padding: 40px 60px;
	display: flex;
	flex-direction: column;
	row-gap: 1.5rem;
}

/* ══════════════════════════════════════
   Mobile
   ══════════════════════════════════════ */

.TgyAskS8 {
	display: none;
}

.zeokh2QU {
	display: none;
}

.Zffnkj9I {
	display: none;
}

@media (max-width: 768px) {
	.xD5ZBuaL {
		display: none;
	}

	.BYuChkje {
		padding: 20px;
	}

	.TgyAskS8 {
		position: fixed;
		top: 16px;
		left: 16px;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		background: var(--sub-bg-dark);
		border: 1px solid #2d2f39;
		border-radius: 10px;
		color: var(--white);
		font-size: 18px;
		cursor: pointer;
		z-index: 50;
	}

	.zeokh2QU {
		display: block;
		position: fixed;
		inset: 0;
		background-color: rgba(0, 0, 0, 0.6);
		-webkit-backdrop-filter: blur(4px);
		        backdrop-filter: blur(4px);
		z-index: 9998;
		animation: D69czjpN 0.2s ease;
	}

	.Zffnkj9I {
		display: flex;
		flex-direction: column;
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		width: 280px;
		max-width: 80vw;
		background-color: var(--sub-bg-dark);
		border-right: 1px solid #2d2f39;
		z-index: 9999;
		transform: translateX(-100%);
		transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		overflow: hidden;
	}

	.As72KUcx {
		transform: translateX(0);
	}

	.KX9T2ZdJ {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 1.25rem 1.5rem 1.25rem 0.75rem;
		border-bottom: 1px solid #2d2f39;
		flex-shrink: 0;
	}

	.ySnp0D80 {
		height: 32px;
		width: auto;
	}

	.g7QGXxnO {
		background: none;
		border: none;
		color: #888;
		font-size: 20px;
		padding: 0.5rem;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: color 0.2s ease;
	}

	.g7QGXxnO:hover {
		color: var(--white);
	}

	.mjYkOLlW {
		flex: 1 1;
		display: flex;
		flex-direction: column;
		padding: 0.75rem 0;
		overflow-y: auto;
	}

	.AAjoLcIS {
		margin: 0;
		padding: 12px 1.5rem 6px;
		font-size: 10px;
		font-weight: 600;
		color: #555;
		text-transform: uppercase;
		letter-spacing: 1px;
	}

	.qRjg0_Ax {
		height: 1px;
		background: #2d2f39;
		margin: 4px 1.25rem;
	}

	.ZvqmPAYi {
		display: flex;
		align-items: center;
		gap: 1rem;
		padding: 0.75rem 1.5rem;
		text-decoration: none;
		color: var(--white);
		font-weight: 500;
		font-size: 15px;
		transition: background-color 0.15s ease;
	}

	.ZvqmPAYi:hover {
		background-color: rgba(255, 255, 255, 0.04);
	}

	.dhUHcUIJ {
		background-color: var(--accent-1);
	}

	.Rv45OLBA {
		font-size: 18px;
		width: 28px;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
	}

	.fkqibuph {
		display: flex;
		align-items: center;
		gap: 1rem;
		padding: 1rem 1.5rem;
		padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
		border-top: 1px solid #2d2f39;
		background: none;
		border-left: none;
		border-right: none;
		border-bottom: none;
		color: var(--white);
		font-size: 15px;
		font-weight: 500;
		cursor: pointer;
		flex-shrink: 0;
		width: 100%;
		text-align: left;
		transition: background-color 0.15s ease;
	}

	.fkqibuph:hover {
		background-color: rgba(239, 68, 68, 0.15);
	}

	.fkqibuph i {
		font-size: 18px;
		width: 28px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	@keyframes D69czjpN {
		from { opacity: 0; }
		to { opacity: 1; }
	}
}

/* ══════════════════════════════════════
   Admin Login - Split panel layout
   ══════════════════════════════════════ */

.d6JFXAws {
  display: grid;
  grid-template-columns: 44% 1fr;
  height: 100vh;
  background-color: var(--bg-dark);
  color: var(--white);
}

/* ── Left: Form side ── */
.eaMsaA8m {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 4.5rem;
  animation: sg56wroE 0.6s ease;
}

.N5qzMXhU {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.u3auziyP {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
}

.u3auziyP span {
  color: var(--accent-1);
}

.YIuNpWE3 {
  color: #666;
  font-size: 15px;
  margin-top: 0.5rem;
}

.ieTdamix {
  width: 100%;
  height: 54px;
  background: var(--accent-1);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: filter 0.2s ease;
  font-family: var(--font-family);
}

.ieTdamix:hover {
  filter: brightness(1.12);
}

.ieTdamix:active {
  transform: scale(0.98);
}

.ieTdamix:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.ieTdamix i {
  font-size: 18px;
}

.dKmuovK4 {
  background: rgba(255, 38, 38, 0.92);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  animation: dHYyBIrh 0.4s ease;
}

.rGTRPGm9 {
  text-align: center;
  color: #555;
  font-size: 12px;
  line-height: 1.6;
}

.rGTRPGm9 i {
  color: var(--accent-1);
  margin-right: 4px;
}

/* ── Right: Visual panel ── */
.YXP1CMsy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  overflow: hidden;
  animation: lgBmNEhP 0.8s ease;
}

.k48FMPqR {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(13, 122, 199, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(60, 162, 89, 0.1) 0%, transparent 60%),
    var(--sub-bg-dark);
  border-radius: 24px 0 0 24px;
  border: 1px solid #2d2f39;
  border-right: none;
  margin: 16px 0 16px 0;
}

.FUFZXc7o {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 420px;
}

.Smbm5y8u {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(13, 122, 199, 0.12);
  color: var(--accent-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 2rem;
}

.NOsD4rZt {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.u4GS1DvT {
  color: #888;
  font-size: 15px;
  line-height: 1.7;
}

.Ho8MDo69 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.5rem;
  gap: 1.5rem;
  margin-top: 3rem;
}

.Nv2Uw0j5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.HxpIrh4G {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.maFD1_IF {
  background: rgba(13, 122, 199, 0.12);
  color: var(--accent-1);
}

.tp5gO6xG {
  background: rgba(60, 162, 89, 0.12);
  color: var(--success-green);
}

.CRYR56Yb {
  background: rgba(99, 102, 241, 0.12);
  color: #6366f1;
}

.RdwGDxk0 {
  font-size: 12px;
  color: #888;
  font-weight: 500;
}

/* ── Animations ── */
@keyframes sg56wroE {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lgBmNEhP {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes dHYyBIrh {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .d6JFXAws {
    grid-template-columns: 1fr;
  }

  .YXP1CMsy {
    display: none;
  }

  .eaMsaA8m {
    padding: 2rem 1.5rem;
  }
}

/* Drawer chrome (mirrors client VenueEditDrawer / IndEvent Drawer) */
.vrHuObyS {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	z-index: 1000;
	animation: pQFbPrI8 0.2s ease;
}

.XEXDb03d {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 640px;
	max-width: 92vw;
	background: rgba(20, 22, 30, 0.78);
	backdrop-filter: blur(24px) saturate(170%);
	-webkit-backdrop-filter: blur(24px) saturate(170%);
	border-left: 1px solid rgba(255, 255, 255, 0.08);
	z-index: 1001;
	display: flex;
	flex-direction: column;
	box-shadow: -16px 0 40px rgba(0, 0, 0, 0.4);
	animation: W6PjNrp8 0.28s ease;
}

@keyframes pQFbPrI8    { from { opacity: 0; }    to { opacity: 1; } }
@keyframes UQBM6U7a { from { opacity: 1; }    to { opacity: 0; } }
@keyframes W6PjNrp8   { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes nVvZpu3p{ from { transform: translateX(0); } to   { transform: translateX(100%); } }

.HVxBbYVP          { animation: nVvZpu3p 0.26s cubic-bezier(0.4, 0, 1, 1) forwards; }
.ECwBJiZm { animation: UQBM6U7a 0.22s ease forwards; }

/* Header */
.AB7pMegT {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.4rem 1.5rem;
	background:
		linear-gradient(180deg,
			rgba(255, 255, 255, 0.045) 0%,
			rgba(255, 255, 255, 0.012) 100%),
		rgba(20, 22, 30, 0.55);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	        backdrop-filter: blur(20px) saturate(180%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.06),
		0 4px 14px rgba(0, 0, 0, 0.18);
	flex-shrink: 0;
}

.dRhntTi1 { flex: 1 1; min-width: 0; }

.xIY0ZmG9 {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	color: var(--white);
	display: flex;
	align-items: center;
	gap: 8px;
}

.sU4TFdHI {
	margin: 0.4rem 0 0;
	font-size: 12px;
	color: var(--text-muted);
}

.MRqyIEhJ {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	border: 1px solid #2d2f39;
	background: rgba(255, 255, 255, 0.02);
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-family: inherit;
	transition: all 0.15s ease;
}

.MRqyIEhJ:hover {
	background: rgba(255, 255, 255, 0.06);
	color: var(--white);
	border-color: #3d4052;
}

/* Body */
.VYctQ596 {
	flex: 1 1;
	overflow-y: auto;
	padding: 1.25rem 1.5rem 2rem;
	background: var(--bg-dark);
}

.VYctQ596::-webkit-scrollbar { width: 4px; }
.VYctQ596::-webkit-scrollbar-thumb { background: #2d2f39; border-radius: 4px; }

/* Tabs */
.mcfg6xhH {
	display: flex;
	gap: 4px;
	padding: 0.65rem 1.5rem;
	background: rgba(20, 22, 30, 0.55);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	overflow-x: auto;
	flex-shrink: 0;
}

.d20Jbz_u {
	padding: 7px 14px;
	border-radius: 8px;
	border: none;
	background: none;
	color: var(--text-muted);
	font-size: 13px;
	font-weight: 600;
	font-family: var(--font-family);
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
	white-space: nowrap;
}

.d20Jbz_u:hover {
	background: rgba(255, 255, 255, 0.04);
	color: var(--white);
}

.hTz60S5A {
	background: rgba(13, 122, 199, 0.18);
	color: var(--white);
}

/* Action row */
.LFve0niM {
	display: flex;
	gap: 8px;
	margin-bottom: 1.25rem;
	flex-wrap: wrap;
}

.jcnEIfK8 {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 9px 16px;
	border-radius: 10px;
	background: var(--accent-1);
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 13px;
	font-weight: 600;
	font-family: var(--font-family);
	cursor: pointer;
	transition: background 0.15s ease;
}

.jcnEIfK8:hover { background: #1389d8; }
.jcnEIfK8:disabled { opacity: 0.6; cursor: not-allowed; }

/* Detail grid */
.IS64LifZ {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 0.85rem;
	gap: 0.85rem;
}

.Je3nN28V {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 12px 14px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 10px;
}

.XwLh_5rc { grid-column: 1 / -1; }

.xqxrkMq0 {
	font-size: 10px;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.7px;
	font-weight: 700;
}

.EYr5HuBt {
	font-size: 14px;
	color: var(--white);
	font-weight: 500;
	word-break: break-word;
}

.tcoeuZ72 { color: var(--text-muted); font-weight: 400; }

/* List rows inside tabs (team / events / venues) */
.kF_1pEuk {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 12px 14px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	margin-bottom: 6px;
}

.g1Uftcp6 {
	font-size: 14px;
	font-weight: 600;
	color: var(--white);
	margin: 0 0 2px;
}

.Y2HQfzhd {
	font-size: 12px;
	color: var(--text-muted);
	margin: 0;
}

.xnfyCGRN {
	font-size: 11px;
	font-weight: 700;
	padding: 3px 9px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	color: var(--text-secondary);
	border: 1px solid rgba(255, 255, 255, 0.07);
	white-space: nowrap;
}

.OIEich6i {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 40px 20px;
	color: var(--text-muted);
	text-align: center;
}

.OIEich6i i { font-size: 28px; opacity: 0.4; }
.OIEich6i p { margin: 0; font-size: 13px; }

.U8C4Wb7G {
	display: flex;
	justify-content: center;
	padding: 60px 0;
}

/* Confirm modal (impersonate) */
.mr0S0Hwa {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	-webkit-backdrop-filter: blur(4px);
	        backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1200;
	animation: pQFbPrI8 0.2s ease;
}

.RQ0TcO8z {
	background: var(--sub-bg-dark);
	border: 1px solid #2d2f39;
	border-radius: 16px;
	padding: 28px;
	max-width: 420px;
	width: 90%;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.EYIaxcXx { font-size: 18px; font-weight: 700; margin: 0 0 12px; }
.AKx37BPB { color: #888; font-size: 14px; line-height: 1.6; margin-bottom: 1.5rem; }
.AKx37BPB strong { color: var(--white); font-weight: 600; }
.J2HddS06 { display: flex; gap: 10px; justify-content: flex-end; }

.bKkfuTLW {
	padding: 9px 18px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: none;
	color: var(--white);
	font-size: 13px;
	font-family: var(--font-family);
	cursor: pointer;
}

.bKkfuTLW:hover { background: rgba(255, 255, 255, 0.04); }

.jEqmBN2Z {
	padding: 9px 18px;
	border-radius: 10px;
	border: none;
	background: var(--accent-1);
	color: var(--white);
	font-size: 13px;
	font-weight: 600;
	font-family: var(--font-family);
	cursor: pointer;
}

.jEqmBN2Z:hover { filter: brightness(1.12); }
.jEqmBN2Z:disabled { opacity: 0.6; cursor: not-allowed; }

/* Form body inside the drawer - mirrors AccountDrawer body padding so the
   inputs sit on the same horizontal rails as the read-only Details view. */
.oZoYKKu3 {
	flex: 1 1;
	overflow-y: auto;
	padding: 1.25rem 1.5rem 1.5rem;
	background: var(--bg-dark);
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.oZoYKKu3::-webkit-scrollbar { width: 4px; }
.oZoYKKu3::-webkit-scrollbar-thumb { background: #2d2f39; border-radius: 4px; }

.aH1mXgKz {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 12px;
	gap: 12px;
}

.J_qX8d3p {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.H1vE65u_ {
	font-size: 10px;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.7px;
	font-weight: 700;
}

.IFMYKyWK {
	position: relative;
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 10px;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.IFMYKyWK:focus-within {
	border-color: rgba(13, 122, 199, 0.55);
	background: rgba(13, 122, 199, 0.06);
}

.G1oTGh1t {
	color: var(--text-muted);
	font-size: 13px;
	padding-left: 12px;
}

.cwAVkhB5 {
	flex: 1 1;
	min-width: 0;
	padding: 11px 12px;
	background: transparent;
	border: none;
	outline: none;
	color: var(--white);
	font-family: inherit;
	font-size: 14px;
}

.cwAVkhB5::placeholder { color: var(--text-muted); }

.xEaOHEZQ {
	background: none;
	border: none;
	color: var(--text-muted);
	cursor: pointer;
	padding: 0 12px;
	height: 100%;
	display: flex;
	align-items: center;
	font-size: 13px;
	transition: color 0.15s ease;
}

.xEaOHEZQ:hover { color: var(--white); }

.LRRwvZOX {
	font-size: 11px;
	color: var(--text-muted);
	margin: 2px 0 0;
}

.QXytdQ88 {
	padding: 10px 12px;
	border-radius: 10px;
	background: rgba(220, 38, 38, 0.1);
	border: 1px solid rgba(220, 38, 38, 0.3);
	color: #fca5a5;
	font-size: 13px;
}

.VCz7xQTL {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	background: rgba(6, 182, 212, 0.08);
	border: 1px solid rgba(6, 182, 212, 0.2);
	border-radius: 10px;
	color: var(--text-secondary);
	font-size: 12px;
}

.VCz7xQTL i {
	color: #06b6d4;
	font-size: 13px;
}

.VCz7xQTL strong { color: var(--white); font-weight: 600; }

.Gnk_1HlF {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.JssioMbP {
	padding: 10px 18px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.02);
	color: var(--white);
	font-size: 13px;
	font-weight: 600;
	font-family: var(--font-family);
	cursor: pointer;
	transition: background 0.15s ease;
}

.JssioMbP:hover:not(:disabled) { background: rgba(255, 255, 255, 0.06); }
.JssioMbP:disabled { opacity: 0.5; cursor: not-allowed; }

.MKzidZd8 {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: var(--accent-1);
	color: var(--white);
	font-size: 13px;
	font-weight: 600;
	font-family: var(--font-family);
	cursor: pointer;
	transition: background 0.15s ease;
}

.MKzidZd8:hover:not(:disabled) { background: #1389d8; }
.MKzidZd8:disabled { opacity: 0.6; cursor: not-allowed; }

@media (max-width: 520px) {
	.aH1mXgKz { grid-template-columns: 1fr; }
}

/* Header above the toolbar */
.jlhWlbA2 {
	font-size: 28px;
	font-weight: 700;
	margin: 0;
	color: var(--white);
}

.jAJEmlxX {
	font-size: 13px;
	color: var(--text-muted);
	margin: 4px 0 0;
}

/* Toolbar: search + count */
.Lp83VcLk {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	flex-shrink: 0;
}

.QbDKfZ4S {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 14px;
	border-radius: 10px;
	border: 1px solid var(--border-soft);
	background: rgba(255, 255, 255, 0.02);
	color: var(--text-secondary);
	font-size: 13px;
	font-weight: 600;
}

.pKvjeoNv {
	font-size: 11px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--text-muted);
	border-radius: 999px;
	padding: 1px 7px;
	font-weight: 700;
}

.sgLBsSJi {
	position: relative;
	width: 340px;
	max-width: 100%;
	flex-shrink: 0;
}

.sgLBsSJi i {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-muted);
	font-size: 13px;
	pointer-events: none;
}

.sgLBsSJi input {
	width: 100%;
	padding: 8px 12px 8px 34px;
	background: var(--sub-bg-dark);
	border: 1px solid var(--border-soft);
	border-radius: 10px;
	color: var(--white);
	font-family: inherit;
	font-size: 13px;
	outline: none;
	transition: border-color 0.15s ease;
	box-sizing: border-box;
}

.sgLBsSJi input:focus { border-color: rgba(13, 122, 199, 0.5); }
.sgLBsSJi input::placeholder { color: var(--text-muted); }

.XAQWLlLw {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 14px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: var(--accent-1);
	color: var(--white);
	font-family: var(--font-family);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	flex-shrink: 0;
	transition: background 0.15s ease, filter 0.15s ease;
}

.XAQWLlLw:hover { background: #1389d8; }
.XAQWLlLw i { font-size: 12px; }

/* Body: scrollable list (parent page_content handles overflow) */
._c3CJ0wj {
	display: flex;
	flex-direction: column;
	flex: 1 1;
	min-height: 0;
}

.QyxLbHYN {
	display: flex;
	flex-direction: column;
	gap: 1px;
	padding-bottom: 24px;
}

/* Row */
.FbnE4cby {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) auto auto;
	align-items: center;
	grid-gap: 14px;
	gap: 14px;
	padding: 14px 16px;
	background: var(--sub-bg-dark);
	border: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.15s ease;
	margin-bottom: 6px;
}

.FbnE4cby:hover { border-color: rgba(255, 255, 255, 0.1); background: rgba(22, 24, 36, 0.9); }

.IZuqKpXZ {
	border-color: rgba(13, 122, 199, 0.55) !important;
	background: rgba(13, 122, 199, 0.06) !important;
}

.cgOdF0cm {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 800;
	color: var(--white);
	flex-shrink: 0;
	overflow: hidden;
	background: var(--accent-1);
}

.cgOdF0cm img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.wnE7QjYH { min-width: 0; }

.zD_2O0zN {
	font-size: 14px;
	font-weight: 700;
	color: var(--white);
	margin: 0 0 3px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: flex;
	align-items: center;
	gap: 6px;
}

.IGkWRaGt {
	color: #06b6d4;
	font-size: 12px;
}

.lTxGJv6i {
	font-size: 12px;
	color: var(--text-muted);
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.k7FKAOTW {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	white-space: nowrap;
	flex-shrink: 0;
}

.CceFEKF1 {
	background: rgba(13, 122, 199, 0.15);
	color: #6db8ed;
	border: 1px solid rgba(13, 122, 199, 0.2);
}

.PHnoh9hl {
	background: rgba(255, 255, 255, 0.04);
	color: var(--text-muted);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.PLUtvc_Q {
	color: var(--text-muted);
	font-size: 11px;
}

/* Pagination footer */
.XmOLblC7 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 4px 24px;
	gap: 10px;
	flex-wrap: wrap;
}

.T5rDAvKs {
	font-size: 12px;
	color: var(--text-muted);
}

.WZksUl2z {
	display: inline-flex;
	gap: 6px;
}

.VQq7Zlo9 {
	min-width: 32px;
	height: 32px;
	padding: 0 10px;
	border-radius: 8px;
	border: 1px solid var(--border-soft);
	background: rgba(255, 255, 255, 0.02);
	color: var(--white);
	font-family: var(--font-family);
	font-size: 13px;
	cursor: pointer;
	transition: all 0.15s ease;
}

.VQq7Zlo9:hover:not(:disabled) {
	background: rgba(255, 255, 255, 0.06);
	border-color: #3d4052;
}

.VQq7Zlo9:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.XWY86o_L {
	background: var(--accent-1) !important;
	border-color: var(--accent-1) !important;
}

/* Empty + loading */
.rSmHSZ2o {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 60px 20px;
	color: var(--text-muted);
}

.rSmHSZ2o i { font-size: 32px; opacity: 0.4; }
.rSmHSZ2o p { margin: 0; font-size: 13px; }

@media (max-width: 600px) {
	.FbnE4cby { grid-template-columns: 40px minmax(0, 1fr) auto; gap: 10px; padding: 12px; }
	.CceFEKF1 { display: none; }
	.PLUtvc_Q { display: none; }
}

.Qgk94c__ {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.w_TlIm7W {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.bkGXJi2Z {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.FzqARiKC {
	font-size: 14px;
	font-weight: 700;
	color: var(--white);
	margin: 0;
}

.w4v6TqeY {
	font-size: 12px;
	color: var(--text-muted);
	margin: 0;
	line-height: 1.45;
}

.jQ48sliX {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 12px;
	gap: 12px;
}

.wyqVRj0L {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.vo6OB_3z {
	font-size: 10px;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.7px;
	font-weight: 700;
}

.ISlCv8JY {
	position: relative;
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 10px;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.ISlCv8JY:focus-within {
	border-color: rgba(13, 122, 199, 0.55);
	background: rgba(13, 122, 199, 0.06);
}

.lBy7IKCk {
	flex: 1 1;
	min-width: 0;
	padding: 10px 12px;
	background: transparent;
	border: none;
	outline: none;
	color: var(--white);
	font-family: inherit;
	font-size: 14px;
	-moz-appearance: textfield;
}

.lBy7IKCk::-webkit-outer-spin-button,
.lBy7IKCk::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.lBy7IKCk::placeholder { color: var(--text-muted); }

.R81LsatH {
	padding: 0 12px;
	font-size: 13px;
	color: var(--text-muted);
	pointer-events: none;
	font-weight: 600;
}

.hLF5INNH {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 12px 14px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	cursor: pointer;
}

.hLF5INNH input {
	margin-top: 3px;
	accent-color: var(--accent-1);
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.hLF5INNH span {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 13px;
	color: var(--white);
}

.hLF5INNH strong { font-weight: 600; }
.hLF5INNH small { font-size: 11px; color: var(--text-muted); font-weight: 400; line-height: 1.4; }

.QFi4y57b {
	display: inline-flex;
	gap: 4px;
	padding: 4px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	align-self: flex-start;
}

.y3ZNuhmw {
	padding: 7px 14px;
	border: none;
	background: transparent;
	color: var(--text-muted);
	font-family: var(--font-family);
	font-size: 12px;
	font-weight: 600;
	border-radius: 7px;
	cursor: pointer;
	transition: all 0.15s ease;
}

.uXLFaqN0 {
	background: rgba(13, 122, 199, 0.18);
	color: var(--white);
}

.fXENg7n0 {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.dGzgqjqG {
	display: grid;
	grid-template-columns: 1fr 1fr 36px;
	grid-gap: 8px;
	gap: 8px;
	font-size: 10px;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.6px;
	font-weight: 700;
	padding: 0 2px;
}

.zAh1WDKo {
	display: grid;
	grid-template-columns: 1fr 1fr 36px;
	grid-gap: 8px;
	gap: 8px;
	align-items: center;
}

.DyybpTGM {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	background: rgba(255, 255, 255, 0.02);
	color: var(--text-muted);
	cursor: pointer;
	transition: all 0.15s ease;
}

.DyybpTGM:hover {
	color: #fca5a5;
	border-color: rgba(220, 38, 38, 0.4);
	background: rgba(220, 38, 38, 0.08);
}

.K5WXU8pk {
	margin-top: 4px;
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 12px;
	border-radius: 8px;
	border: 1px dashed rgba(255, 255, 255, 0.15);
	background: transparent;
	color: var(--text-secondary);
	font-family: var(--font-family);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.15s ease;
}

.K5WXU8pk:hover {
	color: var(--white);
	border-color: rgba(13, 122, 199, 0.5);
	background: rgba(13, 122, 199, 0.06);
}

.g4XUgqtb {
	font-size: 11px;
	color: var(--text-muted);
	margin: 4px 0 0;
	line-height: 1.4;
}

.Clghx2h6 {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	padding-top: 8px;
	position: sticky;
	bottom: 0;
}

.boVdBR1P {
	padding: 10px 18px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.02);
	color: var(--white);
	font-size: 13px;
	font-weight: 600;
	font-family: var(--font-family);
	cursor: pointer;
}

.boVdBR1P:hover:not(:disabled) { background: rgba(255, 255, 255, 0.06); }
.boVdBR1P:disabled { opacity: 0.5; cursor: not-allowed; }

.rmFTa6rW {
	padding: 10px 18px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: var(--accent-1);
	color: var(--white);
	font-size: 13px;
	font-weight: 600;
	font-family: var(--font-family);
	cursor: pointer;
	transition: background 0.15s ease;
}

.rmFTa6rW:hover:not(:disabled) { background: #1389d8; }
.rmFTa6rW:disabled { opacity: 0.6; cursor: not-allowed; }

@media (max-width: 520px) {
	.jQ48sliX { grid-template-columns: 1fr; }
}

.sh72_npy {
	font-size: 28px;
	font-weight: 700;
	margin: 0;
	color: var(--white);
}

.kSEoRU1n {
	font-size: 13px;
	color: var(--text-muted);
	margin: 4px 0 0;
}

.CKvU1PuL {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	flex-shrink: 0;
}

.MxrX3Rbi {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 14px;
	border-radius: 10px;
	border: 1px solid var(--border-soft);
	background: rgba(255, 255, 255, 0.02);
	color: var(--text-secondary);
	font-size: 13px;
	font-weight: 600;
}

.P15T0rum {
	font-size: 11px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--text-muted);
	border-radius: 999px;
	padding: 1px 7px;
	font-weight: 700;
}

.USJA7TTz {
	position: relative;
	width: 340px;
	max-width: 100%;
	flex-shrink: 0;
}

.USJA7TTz i {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-muted);
	font-size: 13px;
	pointer-events: none;
}

.USJA7TTz input {
	width: 100%;
	padding: 8px 12px 8px 34px;
	background: var(--sub-bg-dark);
	border: 1px solid var(--border-soft);
	border-radius: 10px;
	color: var(--white);
	font-family: inherit;
	font-size: 13px;
	outline: none;
	transition: border-color 0.15s ease;
	box-sizing: border-box;
}

.USJA7TTz input:focus { border-color: rgba(13, 122, 199, 0.5); }
.USJA7TTz input::placeholder { color: var(--text-muted); }

.qsIvJQ0e {
	display: flex;
	flex-direction: column;
	flex: 1 1;
	min-height: 0;
}

.thoaqdE7 {
	display: flex;
	flex-direction: column;
	gap: 1px;
	padding-bottom: 24px;
}

.Kb5fhyB6 {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) auto;
	align-items: center;
	grid-gap: 14px;
	gap: 14px;
	padding: 14px 16px;
	background: var(--sub-bg-dark);
	border: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.15s ease;
	margin-bottom: 6px;
}

.Kb5fhyB6:hover { border-color: rgba(255, 255, 255, 0.1); background: rgba(22, 24, 36, 0.9); }

.yUMTl4PF {
	border-color: rgba(13, 122, 199, 0.55) !important;
	background: rgba(13, 122, 199, 0.06) !important;
}

.jdjOJuoE {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: var(--white);
	flex-shrink: 0;
	background: var(--accent-1);
}

.ptgdX_mT { min-width: 0; }

.sxpxGzUN {
	font-size: 14px;
	font-weight: 700;
	color: var(--white);
	margin: 0 0 3px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: flex;
	align-items: center;
	gap: 8px;
}

.j8QktuUe {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 2px 8px;
	border-radius: 999px;
	background: rgba(6, 182, 212, 0.12);
	border: 1px solid rgba(6, 182, 212, 0.25);
	color: #67e8f9;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.3px;
	text-transform: uppercase;
}

.j8QktuUe i { font-size: 9px; }

.ULeqgkk6 {
	font-size: 12px;
	color: var(--text-muted);
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.GfogEHTG {
	color: var(--text-muted);
	font-size: 11px;
}

.cW4qic2l {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 4px 24px;
	gap: 10px;
	flex-wrap: wrap;
}

.vYj6tQ47 {
	font-size: 12px;
	color: var(--text-muted);
}

.ObEWWnV8 {
	display: inline-flex;
	gap: 6px;
}

.OoTq9qOj {
	min-width: 32px;
	height: 32px;
	padding: 0 10px;
	border-radius: 8px;
	border: 1px solid var(--border-soft);
	background: rgba(255, 255, 255, 0.02);
	color: var(--white);
	font-family: var(--font-family);
	font-size: 13px;
	cursor: pointer;
	transition: all 0.15s ease;
}

.OoTq9qOj:hover:not(:disabled) {
	background: rgba(255, 255, 255, 0.06);
	border-color: #3d4052;
}

.OoTq9qOj:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.Py1FeCty {
	background: var(--accent-1) !important;
	border-color: var(--accent-1) !important;
}

.YcIGY3AP {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 60px 20px;
	color: var(--text-muted);
}

.YcIGY3AP i { font-size: 32px; opacity: 0.4; }
.YcIGY3AP p { margin: 0; font-size: 13px; }

@media (max-width: 600px) {
	.Kb5fhyB6 { grid-template-columns: 40px minmax(0, 1fr) auto; gap: 10px; padding: 12px; }
	.j8QktuUe { display: none; }
}

.uUeHEl58 {
	display: flex;
	gap: 8px;
	margin-bottom: 1.25rem;
	flex-wrap: wrap;
}

.PF6Sl2cR {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 9px 16px;
	border-radius: 10px;
	background: var(--accent-1);
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 13px;
	font-weight: 600;
	font-family: var(--font-family);
	text-decoration: none;
	cursor: pointer;
	transition: background 0.15s ease;
}

.PF6Sl2cR:hover { background: #1389d8; color: var(--white); }

.wUYguri6 {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 9px 16px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.04);
	color: var(--text-muted);
	border: 1px solid rgba(255, 255, 255, 0.05);
	font-size: 13px;
	font-weight: 600;
	font-family: var(--font-family);
	cursor: not-allowed;
}

.YtxFIreU {
	font-size: 12px;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.7px;
	font-weight: 700;
	margin: 24px 0 12px;
}

.j5gRJU2b {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 14px 16px;
	margin-bottom: 10px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ogzZqST_ {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 10px;
}

.ZVYgV3YK { min-width: 0; flex: 1 1; }

.fBklJLmd {
	font-size: 14px;
	font-weight: 700;
	color: var(--white);
	margin: 0 0 3px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.dFAiPW9B {
	font-size: 12px;
	color: var(--text-muted);
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.IKlmoOAg {
	font-size: 10px;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 700;
	white-space: nowrap;
	flex-shrink: 0;
}

.tSICmHgp {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-top: 10px;
	border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.ccsokcmX {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.CW6LCN3J {
	font-size: 10px;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.6px;
	font-weight: 700;
}

.vFwykpIh {
	font-size: 12px;
	color: var(--text-muted);
	font-style: italic;
}

.XVoRypUx {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.BUhD1yVf {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
	color: var(--text-secondary);
	font-size: 12px;
	font-weight: 600;
}

.BUhD1yVf i {
	font-size: 10px;
	color: var(--text-muted);
}

.vGdQlW3v {
	font-size: 28px;
	font-weight: 700;
	margin: 0;
	color: var(--white);
}

.XCs5_YEK {
	font-size: 13px;
	color: var(--text-muted);
	margin: 4px 0 0;
}

.aAmxOJ4z {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	flex-shrink: 0;
}

.xjbero6U {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 14px;
	border-radius: 10px;
	border: 1px solid var(--border-soft);
	background: rgba(255, 255, 255, 0.02);
	color: var(--text-secondary);
	font-size: 13px;
	font-weight: 600;
}

.Cq1hsfud {
	font-size: 11px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--text-muted);
	border-radius: 999px;
	padding: 1px 7px;
	font-weight: 700;
}

.fXiEbbbF {
	position: relative;
	width: 340px;
	max-width: 100%;
	flex-shrink: 0;
}

.fXiEbbbF i {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-muted);
	font-size: 13px;
	pointer-events: none;
}

.fXiEbbbF input {
	width: 100%;
	padding: 8px 12px 8px 34px;
	background: var(--sub-bg-dark);
	border: 1px solid var(--border-soft);
	border-radius: 10px;
	color: var(--white);
	font-family: inherit;
	font-size: 13px;
	outline: none;
	transition: border-color 0.15s ease;
	box-sizing: border-box;
}

.fXiEbbbF input:focus { border-color: rgba(13, 122, 199, 0.5); }
.fXiEbbbF input::placeholder { color: var(--text-muted); }

.eK7A0KHd {
	display: flex;
	flex-direction: column;
	flex: 1 1;
	min-height: 0;
}

.lBgGVwpy {
	display: flex;
	flex-direction: column;
	gap: 1px;
	padding-bottom: 24px;
}

.AyNdRCvs {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) auto auto;
	align-items: center;
	grid-gap: 14px;
	gap: 14px;
	padding: 14px 16px;
	background: var(--sub-bg-dark);
	border: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.15s ease;
	margin-bottom: 6px;
}

.AyNdRCvs:hover { border-color: rgba(255, 255, 255, 0.1); background: rgba(22, 24, 36, 0.9); }

.JAB7QfR4 {
	border-color: rgba(13, 122, 199, 0.55) !important;
	background: rgba(13, 122, 199, 0.06) !important;
}

.hoJyLtdh {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 800;
	color: var(--white);
	flex-shrink: 0;
	background: var(--accent-1);
}

.C8mAKkhi { min-width: 0; }

.W_cZM4Bi {
	font-size: 14px;
	font-weight: 700;
	color: var(--white);
	margin: 0 0 3px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: flex;
	align-items: center;
	gap: 6px;
}

.Xx73ll8e {
	color: #06b6d4;
	font-size: 12px;
}

.wrR0jLep {
	font-size: 12px;
	color: var(--text-muted);
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.v2z3G1MH {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 3px 10px;
	border-radius: 999px;
	background: rgba(13, 122, 199, 0.15);
	color: #6db8ed;
	border: 1px solid rgba(13, 122, 199, 0.2);
	font-size: 11px;
	font-weight: 700;
	white-space: nowrap;
	flex-shrink: 0;
}

.v2z3G1MH i { font-size: 9px; }

.vB7E5Zdi {
	color: var(--text-muted);
	font-size: 11px;
}

.DSStPyTg {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 4px 24px;
	gap: 10px;
	flex-wrap: wrap;
}

.TNFzsrXb {
	font-size: 12px;
	color: var(--text-muted);
}

._Cu97BO8 {
	display: inline-flex;
	gap: 6px;
}

.R7OQlZC3 {
	min-width: 32px;
	height: 32px;
	padding: 0 10px;
	border-radius: 8px;
	border: 1px solid var(--border-soft);
	background: rgba(255, 255, 255, 0.02);
	color: var(--white);
	font-family: var(--font-family);
	font-size: 13px;
	cursor: pointer;
	transition: all 0.15s ease;
}

.R7OQlZC3:hover:not(:disabled) {
	background: rgba(255, 255, 255, 0.06);
	border-color: #3d4052;
}

.R7OQlZC3:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.aYsvcP8L {
	background: var(--accent-1) !important;
	border-color: var(--accent-1) !important;
}

.eRiejoIm {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 60px 20px;
	color: var(--text-muted);
}

.eRiejoIm i { font-size: 32px; opacity: 0.4; }
.eRiejoIm p { margin: 0; font-size: 13px; }

@media (max-width: 600px) {
	.AyNdRCvs { grid-template-columns: 40px minmax(0, 1fr) auto; gap: 10px; padding: 12px; }
	.v2z3G1MH { display: none; }
}

.jGVcnzv1 {
  border-radius: 15px;
  background-color: var(--sub-bg-dark);
  padding: 30px;
  border: 1px solid #2d2f39;
  max-width: 500px;
}

.WvW1Xn31 {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.aHlVSMKp {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.a2wiuQu9 {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.l33xNxsS {
  width: 100%;
  height: 56px;
  padding: 0 1.15rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  column-gap: 0.8rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.l33xNxsS:focus-within {
  border-color: var(--accent-1);
  box-shadow: 0 0 0 3px rgba(13, 122, 199, 0.12);
}

.meHT1UqE {
  color: #555;
  font-size: 14px;
  flex-shrink: 0;
}

.S4OSeeYN {
  flex: 1 1;
  background: none;
  border: none;
  color: var(--white);
  font-size: 15px;
  font-family: var(--font-family);
}

.S4OSeeYN::placeholder {
  color: #555;
}

.tQ6vEU94 {
  width: 100%;
  height: 54px;
  background: var(--accent-1);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: filter 0.2s ease;
  font-family: var(--font-family);
  margin-top: 0.5rem;
}

.tQ6vEU94:hover {
  filter: brightness(1.12);
}

.tQ6vEU94:active {
  transform: scale(0.98);
}

.tQ6vEU94:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.G3KKgg2B {
  background: rgba(255, 38, 38, 0.92);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

/* ── Success state ── */
.o3qlj29k {
  border-radius: 15px;
  background-color: var(--sub-bg-dark);
  padding: 40px 30px;
  border: 1px solid #2d2f39;
  max-width: 500px;
  text-align: center;
}

.qsc6zwMV {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(60, 162, 89, 0.12);
  color: var(--success-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 1.25rem;
}

.oD2V1YbV {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.SBvvR05r {
  color: #888;
  font-size: 14px;
  margin-bottom: 1.5rem;
}

.Jw4nh14u {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 1.5rem;
  text-align: left;
}

.VIj8Xk9d {
  font-size: 12px;
  font-weight: 600;
  color: #f59e0b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.uCOcYK9B {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  font-family: monospace;
  word-break: break-all;
}

.BX2Micip {
  font-size: 12px;
  color: #888;
  margin-top: 8px;
}

.uN4px9cn {
  padding: 10px 24px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: none;
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-family);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.uN4px9cn:hover {
  background-color: rgba(255, 255, 255, 0.04);
}

