.personal-proxy {
	width: 100%;
	max-width: none;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	color: #e2e8f0;
}

.personal-proxy-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 0.25rem;
}

.personal-proxy-title h1 {
	margin: 0;
	color: #fff;
	font-size: clamp(1.35rem, 2vw, 1.875rem);
	font-weight: 800;
	letter-spacing: 0;
}

.personal-proxy-title p {
	margin-top: 0.35rem;
	color: #64748b;
	font-size: 0.875rem;
}

.personal-proxy-badge {
	display: none;
	align-items: center;
	gap: 0.45rem;
	padding: 0.48rem 0.75rem;
	border: 1px solid rgba(34, 211, 238, 0.22);
	border-radius: 999px;
	background: rgba(34, 211, 238, 0.08);
	color: #a5f3fc;
	font-size: 0.75rem;
	font-weight: 700;
	white-space: nowrap;
}

.personal-proxy-badge::before {
	content: "";
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 999px;
	background: #22d3ee;
	box-shadow: 0 0 14px rgba(34, 211, 238, 0.8);
}

.personal-proxy-tabs {
	display: flex;
	gap: 0.25rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	overflow-x: auto;
	scrollbar-width: none;
}

.personal-proxy-tabs::-webkit-scrollbar {
	display: none;
}

.personal-proxy-tab {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.75rem;
	padding: 0 1.15rem;
	border: 0;
	border-bottom: 2px solid transparent;
	background: transparent;
	color: #64748b;
	font-size: 0.875rem;
	font-weight: 700;
	white-space: nowrap;
	cursor: pointer;
	transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.personal-proxy-tab:hover {
	color: #cbd5e1;
	background: rgba(255, 255, 255, 0.025);
}

.personal-proxy-tab.active {
	color: #22d3ee;
	border-bottom-color: #22d3ee;
}

.personal-proxy-panel {
	min-width: 0;
}

.personal-proxy-panel > * {
	width: 100% !important;
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.personal-proxy-empty {
	min-height: 18rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 1rem;
	background: rgba(15, 23, 42, 0.45);
	color: #64748b;
	font-size: 0.95rem;
}

.dynamic-residential-overview {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 1rem;
	margin-top: 1rem;
	margin-bottom: 0.35rem;
}

.dynamic-residential-card {
	min-height: 8.3rem;
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 1rem;
	background: rgba(15, 23, 42, 0.5);
	padding: 1rem 1.1rem;
	box-shadow: 0 18px 34px -24px rgba(0, 0, 0, 0.8);
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.dynamic-residential-card:hover {
	border-color: rgba(34, 211, 238, 0.25);
	box-shadow: 0 20px 38px -24px rgba(34, 211, 238, 0.28);
}

.dynamic-residential-card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.75rem;
}

.dynamic-residential-traffic-overview-card {
	grid-column: 1 / -1;
	width: min(100%, 56rem);
}

.dynamic-residential-card-title {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: #fff;
	font-size: 0.95rem;
	font-weight: 800;
}

.dynamic-residential-card-title svg {
	color: #22d3ee;
}

.dynamic-residential-icon-btn,
.dynamic-residential-text-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	color: #cbd5e1;
	font-size: 0.78rem;
	font-weight: 700;
	cursor: pointer;
	transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.dynamic-residential-icon-btn {
	width: 2rem;
	height: 2rem;
	border-radius: 0.5rem;
}

.dynamic-residential-icon-btn:hover,
.dynamic-residential-text-btn:hover {
	color: #22d3ee;
	background: rgba(34, 211, 238, 0.06);
}

.dynamic-residential-traffic-value {
	color: #fff;
	font-size: clamp(2rem, 4vw, 3.1rem);
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0;
}

.dynamic-residential-traffic-value span {
	margin-left: 0.15rem;
	color: #94a3b8;
	font-size: 1rem;
	font-weight: 700;
}

.dynamic-residential-traffic-value::first-letter {
	letter-spacing: 0;
}

.dynamic-residential-traffic-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.dynamic-residential-traffic-metrics {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.dynamic-residential-traffic-metric {
	min-width: 0;
	padding: 0.15rem 0;
}

.dynamic-residential-traffic-label {
	display: block;
	margin-bottom: 0.55rem;
	color: #94a3b8;
	font-size: 0.78rem;
	font-weight: 800;
}

.dynamic-residential-traffic-sub {
	min-height: 1.05rem;
	margin-top: 0.45rem;
	color: #64748b;
	font-size: 0.72rem;
}

.dynamic-residential-primary-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2rem;
	width: fit-content;
	padding: 0.45rem 1rem;
	border: 0;
	border-radius: 0.5rem;
	background: #22d3ee;
	color: #020617;
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 0 16px rgba(34, 211, 238, 0.18);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.dynamic-residential-primary-btn:hover {
	background: #38e3f7;
	box-shadow: 0 0 26px rgba(34, 211, 238, 0.36);
	transform: translateY(-1px);
}

.dynamic-residential-traffic-card .dynamic-residential-primary-btn {
	flex: 0 0 auto;
	margin-left: auto;
}

.dynamic-residential-section-head {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	margin-bottom: 1.25rem;
}

.dynamic-residential-mode-block {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.4rem;
	margin-top: 0.45rem;
	margin-bottom: 0.4rem;
}

.dynamic-residential-mode-label {
	display: block;
	color: #94a3b8;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.dynamic-residential-segment {
	display: flex;
	width: fit-content;
	padding: 0.25rem;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 0.6rem;
	background: rgba(255, 255, 255, 0.04);
}

.dynamic-residential-segment .seg-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2rem;
	padding: 0.45rem 1rem;
	border: 0;
	border-radius: 0.45rem;
	background: transparent;
	color: #94a3b8;
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	cursor: pointer;
	transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.dynamic-residential-segment .seg-item:hover {
	color: #cbd5e1;
}

.dynamic-residential-segment .seg-item.active {
	background: #22d3ee;
	color: #020617;
	box-shadow: 0 0 12px rgba(34, 211, 238, 0.3);
}

.dynamic-residential-shell .config-panel {
	margin-top: 0;
	border-radius: 1rem;
	background: rgba(15, 23, 42, 0.52);
	border-color: rgba(255, 255, 255, 0.08);
}

.dynamic-residential-warning {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: -0.45rem 0 1rem;
	padding: 0.65rem 0.85rem;
	border: 1px solid rgba(245, 158, 11, 0.25);
	border-radius: 0.75rem;
	background: rgba(245, 158, 11, 0.08);
	color: #fde68a;
	font-size: 0.78rem;
	font-weight: 700;
}

.dynamic-residential-warning svg {
	width: 1rem;
	height: 1rem;
	flex: 0 0 auto;
}

body.dynamic-residential-extract-modal-open {
	overflow: hidden;
}

body.dynamic-residential-delete-modal-open {
	overflow: hidden;
}

.dynamic-residential-extract-modal {
	position: fixed;
	inset: 0;
	z-index: 160;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.dynamic-residential-extract-modal.is-hidden {
	display: none;
}

.dynamic-residential-extract-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(2, 6, 23, 0.72);
	backdrop-filter: blur(8px);
}

.dynamic-residential-extract-modal-panel {
	position: relative;
	z-index: 1;
	width: min(560px, 100%);
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 1rem;
	background: rgba(15, 23, 42, 0.96);
	box-shadow: 0 24px 60px rgba(2, 6, 23, 0.42);
	color: #e2e8f0;
}

.dynamic-residential-extract-modal-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.85rem;
}

.dynamic-residential-extract-modal-title {
	display: flex;
	flex-direction: row;
	align-items: baseline;
	gap: 0.45rem;
	flex: 1 1 auto;
	min-width: 0;
	flex-wrap: nowrap;
}

.dynamic-residential-extract-modal-head h3 {
	margin: 0;
	color: #fff;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.2;
}

.dynamic-residential-extract-modal-note {
	color: #94a3b8;
	font-size: 0.78rem;
	line-height: 1.35;
	white-space: nowrap;
	word-break: normal;
	flex: 0 0 auto;
}

.dynamic-residential-extract-modal-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	flex: 0 0 auto;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.02);
	color: #cbd5e1;
	font-size: 1.2rem;
	line-height: 1;
	cursor: pointer;
	transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.dynamic-residential-extract-modal-close:hover {
	border-color: rgba(34, 211, 238, 0.35);
	background: rgba(34, 211, 238, 0.08);
	color: #fff;
}

.dynamic-residential-extract-modal-input {
	width: 100%;
	min-height: 3.1rem;
	max-height: 7rem;
	padding: 0.72rem 0.8rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.55rem;
	background: rgba(255, 255, 255, 0.04);
	color: #e2e8f0;
	font-size: 0.9rem;
	line-height: 1.45;
	outline: none;
	resize: vertical;
}

.dynamic-residential-extract-modal-input:focus {
	border-color: rgba(34, 211, 238, 0.55);
	box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}

.dynamic-residential-extract-modal-actions {
	display: flex;
	justify-content: center;
	gap: 1.75rem;
	margin-top: 1rem;
}

.dynamic-residential-extract-modal-copy,
.dynamic-residential-extract-modal-cancel {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 7.5rem;
	min-height: 2.25rem;
	padding: 0 1rem;
	border-radius: 0.55rem;
	font-size: 0.84rem;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.dynamic-residential-extract-modal-copy {
	border: 0;
	background: #22d3ee;
	color: #020617;
	box-shadow: 0 0 16px rgba(34, 211, 238, 0.18);
}

.dynamic-residential-extract-modal-copy:hover {
	background: #38e3f7;
	transform: translateY(-1px);
}

.dynamic-residential-extract-modal-cancel {
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: transparent;
	color: #cbd5e1;
}

.dynamic-residential-extract-modal-cancel:hover {
	border-color: rgba(34, 211, 238, 0.35);
	background: rgba(34, 211, 238, 0.08);
	color: #fff;
}

.dynamic-residential-delete-modal-panel {
	width: min(440px, 100%);
}

.dynamic-residential-delete-modal-message {
	margin: 0.2rem 0 0;
	color: #cbd5e1;
	font-size: 0.92rem;
	line-height: 1.6;
	word-break: break-word;
}

.dynamic-residential-delete-modal-actions {
	justify-content: flex-end;
	gap: 0.75rem;
	margin-top: 1.15rem;
}

.dynamic-residential-delete-modal-confirm {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 7.5rem;
	min-height: 2.25rem;
	padding: 0 1rem;
	border: 0;
	border-radius: 0.55rem;
	background: #ef4444;
	color: #fff;
	font-size: 0.84rem;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
	box-shadow: 0 0 16px rgba(239, 68, 68, 0.16);
}

.dynamic-residential-delete-modal-confirm:hover {
	background: #f87171;
	transform: translateY(-1px);
}

.dynamic-residential-delete-modal-confirm:disabled {
	opacity: 0.72;
	cursor: not-allowed;
	transform: none;
}

.q-company-settings {
	display: flex;
	flex-direction: column;
	gap: 0;
	color: #e2e8f0;
}

.q-company-card {
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(15, 23, 42, 0.48);
	box-shadow: 0 18px 34px -28px rgba(0, 0, 0, 0.9);
}

.q-company-overview-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	align-items: stretch;
	margin-bottom: 26px;
}

.dynamic-residential-stats-row {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.q-company-stats-panel {
	position: relative;
	min-height: 176px;
	overflow: hidden;
	padding: 28px 24px;
	border: 1px solid rgba(34, 211, 238, 0.16);
	border-radius: 20px;
	background: rgba(7, 17, 31, 0.68);
	box-shadow: 0 4px 28px rgba(0, 0, 0, 0.28);
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.q-company-stats-panel:hover {
	border-color: rgba(34, 211, 238, 0.32);
	box-shadow: 0 0 52px rgba(34, 211, 238, 0.08), 0 14px 40px rgba(0, 0, 0, 0.36);
	transform: translateY(-2px);
}

.q-company-stats-inner {
	position: relative;
	z-index: 2;
}

.q-company-stats-label {
	position: relative;
	z-index: 2;
	margin-bottom: 14px;
	color: #94a3b8;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0;
}

.q-company-used-content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 22px;
}

.q-company-ring-progress-wrap {
	position: relative;
	width: 90px;
	height: 90px;
	flex: 0 0 auto;
}

.q-company-ring-progress-wrap svg {
	width: 90px;
	height: 90px;
	transform: rotate(-90deg);
}

.q-company-ring-progress-bg {
	fill: none;
	stroke: rgba(34, 211, 238, 0.08);
	stroke-width: 6;
}

.q-company-ring-progress-fg {
	fill: none;
	stroke: url(#qCompanyRingGradient);
	stroke-width: 6;
	stroke-linecap: butt;
	transition: stroke-dashoffset 0.8s ease;
	filter: drop-shadow(0 0 6px rgba(34, 211, 238, 0.35));
}

.q-company-ring-inner-text {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #22d3ee;
	font-family: "JetBrains Mono", Consolas, monospace;
	font-size: 13px;
	font-weight: 800;
}

.q-company-ring-glow-dot {
	position: absolute;
	top: 4px;
	left: 50%;
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: #22d3ee;
	box-shadow: 0 0 12px #22d3ee, 0 0 24px rgba(34, 211, 238, 0.55);
	transform: translateX(-50%);
	animation: qCompanyDotPulse 2.5s ease-in-out infinite;
}

@keyframes qCompanyDotPulse {
	0%,
	100% {
		opacity: 0.6;
	}
	50% {
		opacity: 1;
	}
}

.q-company-stats-number,
.q-company-stats-large {
	color: #f8fafc;
	font-family: "JetBrains Mono", Consolas, monospace;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0;
}

.q-company-stats-number {
	font-size: clamp(1.85rem, 2.6vw, 2.25rem);
}

.q-company-stats-large {
	font-size: clamp(2.3rem, 3.4vw, 3.25rem);
	text-shadow: 0 0 40px rgba(34, 211, 238, 0.18);
}

.q-company-stats-number span,
.q-company-stats-large span {
	margin-left: 6px;
	color: #94a3b8;
	font-family: inherit;
	font-size: 0.42em;
	font-weight: 700;
}

.q-company-stats-sub {
	margin-top: 8px;
	color: #64748b;
	font-size: 12px;
	line-height: 1.4;
}

.q-company-remain-panel {
	border-color: rgba(34, 211, 238, 0.28);
	background: linear-gradient(145deg, rgba(8, 28, 43, 0.82), rgba(8, 15, 31, 0.76));
}

.q-company-glow-orb {
	position: absolute;
	border-radius: 999px;
	pointer-events: none;
	z-index: 0;
}

.q-company-glow-orb-1 {
	top: -48px;
	right: -30px;
	width: 170px;
	height: 170px;
	background: radial-gradient(circle, rgba(34, 211, 238, 0.13) 0%, transparent 70%);
	animation: qCompanyOrbFloatOne 4s ease-in-out infinite;
}

.q-company-glow-orb-2 {
	bottom: -30px;
	left: 28%;
	width: 115px;
	height: 115px;
	background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
	animation: qCompanyOrbFloatTwo 5s ease-in-out infinite;
}

@keyframes qCompanyOrbFloatOne {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(10px, -8px) scale(1.1);
	}
}

@keyframes qCompanyOrbFloatTwo {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(-10px, -12px) scale(1.18);
	}
}

.q-company-cdk-card .q-company-cdk-row {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	gap: 10px;
	align-items: center;
	margin-top: 8px;
}

.q-company-cdk-input-wrap {
	position: relative;
	min-width: 0;
}

.q-company-cdk-input {
	min-width: 0;
	width: 100%;
	height: 38px;
	border: 1px solid rgba(34, 211, 238, 0.2);
	border-radius: 10px;
	background: rgba(11, 23, 39, 0.82);
	padding: 0 44px 0 14px;
	color: #f8fafc;
	font-family: "JetBrains Mono", Consolas, monospace;
	font-size: 14px;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.q-company-cdk-input:focus {
	border-color: #22d3ee;
	box-shadow: 0 0 20px rgba(34, 211, 238, 0.15);
	background: rgba(11, 23, 39, 0.95);
}

.q-company-cdk-input::placeholder {
	color: rgba(148, 163, 184, 0.52);
}

.q-company-cdk-clear {
	position: absolute;
	right: 8px;
	top: 50%;
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: #64748b;
	cursor: pointer;
	transform: translateY(-50%);
	transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.q-company-cdk-clear:hover,
.q-company-cdk-clear:focus {
	background: rgba(148, 163, 184, 0.12);
	color: #e2e8f0;
	outline: none;
}

.q-company-cdk-clear svg {
	width: 16px;
	height: 16px;
}

.q-company-cdk-clear:disabled {
	cursor: wait;
	opacity: 0.55;
}

.q-company-cdk-btn {
	min-width: 70px;
	height: 38px;
	border-radius: 10px;
	background: linear-gradient(135deg, #22d3ee, #38bdf8);
	color: #020617;
	box-shadow: 0 10px 22px rgba(34, 211, 238, 0.18);
}

.q-company-gift-icon {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #8b5cf6;
	transition: transform 0.25s ease;
}

.q-company-gift-icon:hover {
	transform: rotate(12deg) scale(1.08);
}

.q-company-gift-icon svg {
	width: 32px;
	height: 32px;
}

.q-company-cdk-input:disabled,
.q-company-cdk-btn:disabled {
	cursor: wait;
	opacity: 0.68;
}

.q-company-cdk-msg {
	position: relative;
	z-index: 2;
	min-height: 1.05rem;
	margin-top: 0.55rem;
	color: #64748b;
	font-size: 0.72rem;
}

.q-company-account-card {
	margin-bottom: 26px;
	padding: 1rem 1.25rem 1.2rem;
	border-radius: 1rem;
}

.q-company-account-card-header {
	align-items: center;
}

.q-company-account-card-actions {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
}

.q-company-refresh-btn {
	width: 2.2rem;
	height: 2.2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(34, 211, 238, 0.35);
	border-radius: 0.65rem;
	background: rgba(15, 23, 42, 0.72);
	color: #22d3ee;
	transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.q-company-refresh-btn:hover:not(:disabled) {
	border-color: rgba(34, 211, 238, 0.75);
	background: rgba(34, 211, 238, 0.12);
	color: #67e8f9;
}

.q-company-refresh-btn:disabled {
	cursor: not-allowed;
	opacity: 0.65;
}

.q-company-refresh-btn svg {
	width: 1rem;
	height: 1rem;
}

.q-company-refresh-btn.is-loading svg {
	animation: q-company-spin 0.85s linear infinite;
}

@keyframes q-company-spin {
	to {
		transform: rotate(360deg);
	}
}

.q-company-create-account-btn {
	min-height: 2.2rem;
	padding: 0 1.05rem;
}

.q-company-account-table-wrap {
	width: 100%;
	overflow-x: auto;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 0.75rem;
	background: rgba(2, 6, 23, 0.34);
}

.q-company-account-table {
	width: 100%;
	min-width: 920px;
	border-collapse: collapse;
	color: #cbd5e1;
	font-size: 0.78rem;
}

.q-company-account-table th,
.q-company-account-table td {
	padding: 0.78rem 0.85rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	text-align: left;
	vertical-align: middle;
	white-space: nowrap;
}

.q-company-account-table th {
	color: #94a3b8;
	font-size: 0.7rem;
	font-weight: 800;
	background: rgba(15, 23, 42, 0.62);
}

.q-company-account-table tbody tr {
	transition: background-color 0.2s ease;
}

.q-company-account-table tbody tr:hover,
.q-company-account-table tbody tr.is-selected {
	background: rgba(34, 211, 238, 0.055);
}

.q-company-account-table tbody tr:last-child td {
	border-bottom: 0;
}

.q-company-account-empty {
	height: 4.5rem;
	color: #64748b;
	text-align: center !important;
}

.q-company-table-actions {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
}

.q-company-table-action {
	min-height: 1.85rem;
	padding: 0 0.72rem;
	border: 1px solid rgba(34, 211, 238, 0.28);
	border-radius: 0.55rem;
	background: rgba(34, 211, 238, 0.08);
	color: #22d3ee;
	font-size: 0.72rem;
	font-weight: 800;
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.q-company-table-action:hover {
	border-color: rgba(34, 211, 238, 0.55);
	background: rgba(34, 211, 238, 0.16);
	color: #67e8f9;
}

.q-company-table-action-danger {
	border-color: rgba(248, 113, 113, 0.34);
	background: rgba(248, 113, 113, 0.08);
	color: #fca5a5;
}

.q-company-table-action-danger:hover {
	border-color: rgba(248, 113, 113, 0.62);
	background: rgba(248, 113, 113, 0.14);
	color: #fecaca;
}

.q-company-table-action:disabled {
	cursor: wait;
	opacity: 0.52;
}

.q-company-account-select-field {
	max-width: 520px;
}

.q-company-account-option {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.75rem;
	width: 100%;
}

.q-company-account-option-name,
.q-company-account-option-meta {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.q-company-account-option-meta {
	color: #94a3b8;
	font-family: "JetBrains Mono", monospace;
	font-size: 0.78rem;
}

.q-company-account-modal {
	position: fixed;
	inset: 0;
	z-index: 1300;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
}

.q-company-account-modal.is-hidden {
	display: none;
}

.q-company-account-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(2, 6, 23, 0.74);
	backdrop-filter: blur(10px);
}

.q-company-account-modal-panel {
	position: relative;
	z-index: 1;
	width: min(100%, 430px);
	padding: 1.2rem;
	border: 1px solid rgba(34, 211, 238, 0.18);
	border-radius: 1rem;
	background: rgba(15, 23, 42, 0.96);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.q-company-account-modal-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.q-company-account-modal-head h3 {
	margin: 0;
	color: #fff;
	font-size: 1rem;
	font-weight: 900;
}

.q-company-account-modal-close {
	width: 2rem;
	height: 2rem;
	border: 0;
	border-radius: 0.55rem;
	background: rgba(255, 255, 255, 0.06);
	color: #94a3b8;
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.q-company-account-modal-close:hover {
	background: rgba(34, 211, 238, 0.12);
	color: #fff;
}

.q-company-account-modal-target {
	margin-bottom: 0.85rem;
	padding: 0.72rem 0.85rem;
	border: 1px solid rgba(34, 211, 238, 0.14);
	border-radius: 0.65rem;
	background: rgba(34, 211, 238, 0.06);
	color: #bae6fd;
	font-size: 0.78rem;
	font-weight: 800;
}

.q-company-account-modal-target.is-hidden,
.q-company-account-modal-field.is-hidden {
	display: none;
}

.q-company-account-modal-field {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	margin-bottom: 0.85rem;
}

.q-company-account-modal-field label {
	color: #94a3b8;
	font-size: 0.75rem;
	font-weight: 800;
}

.q-company-account-modal-input-wrap {
	position: relative;
}

.q-company-account-modal-input {
	width: 100%;
	min-height: 2.75rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.75rem;
	background: rgba(255, 255, 255, 0.045);
	padding: 0 0.95rem;
	color: #e2e8f0;
	font-size: 0.9rem;
	outline: none;
}

.q-company-account-modal-input::-webkit-outer-spin-button,
.q-company-account-modal-input::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.q-company-account-modal-input[type="number"] {
	-moz-appearance: textfield;
}

.q-company-account-modal-input-wrap.has-action .q-company-account-modal-input {
	padding-right: 4.15rem;
}

.q-company-account-modal-all-btn {
	position: absolute;
	top: 50%;
	right: 0.45rem;
	min-width: 3.1rem;
	height: 1.9rem;
	border: 1px solid rgba(34, 211, 238, 0.36);
	border-radius: 0.55rem;
	background: rgba(34, 211, 238, 0.12);
	color: #67e8f9;
	font-size: 0.78rem;
	font-weight: 900;
	transform: translateY(-50%);
	transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.q-company-account-modal-all-btn:hover:not(:disabled) {
	border-color: rgba(34, 211, 238, 0.72);
	background: rgba(34, 211, 238, 0.2);
	color: #cffafe;
}

.q-company-account-modal-all-btn:disabled {
	cursor: not-allowed;
	opacity: 0.52;
}

.q-company-account-modal-all-btn.is-hidden {
	display: none;
}

.q-company-account-modal-input:focus {
	border-color: rgba(34, 211, 238, 0.65);
}

.q-company-account-modal-input:disabled {
	cursor: wait;
	opacity: 0.68;
}

.q-company-account-modal-msg {
	min-height: 1rem;
	margin: 0.2rem 0 0.85rem;
	color: #64748b;
	font-size: 0.72rem;
}

.q-company-account-modal-msg.is-error {
	color: #fca5a5;
}

.q-company-account-modal-actions {
	display: flex;
	justify-content: flex-end;
	gap: 0.65rem;
}

.q-company-reset-modal-text {
	margin: 0 0 0.85rem;
	color: #e2e8f0;
	font-size: 0.88rem;
	font-weight: 800;
	line-height: 1.5;
}

.q-company-reset-submit {
	background: #f87171;
	color: #020617;
	box-shadow: 0 0 18px rgba(248, 113, 113, 0.18);
}

.q-company-reset-submit:hover {
	background: #fca5a5;
	box-shadow: 0 0 26px rgba(248, 113, 113, 0.28);
}

.q-company-config-card {
	padding: 1.35rem 1.45rem 1.5rem;
	border-radius: 1rem;
}

.q-company-docs-grid {
	display: grid;
	grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.35fr);
	gap: 1rem;
	margin: 1rem 0;
}

.q-company-doc-card {
	min-width: 0;
	padding: 1.15rem 1.25rem 1.25rem;
	border-radius: 1rem;
}

.q-company-doc-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 0.85rem;
	margin-bottom: 0.95rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.q-company-doc-subtitle,
.q-company-example-title {
	margin-bottom: 0.65rem;
	color: #e2e8f0;
	font-size: 0.82rem;
	font-weight: 800;
}

.q-company-param-table-wrap {
	overflow-x: auto;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 0.75rem;
}

.q-company-param-table {
	width: 100%;
	min-width: 520px;
	border-collapse: collapse;
	color: #cbd5e1;
	font-size: 0.78rem;
}

.q-company-param-table th,
.q-company-param-table td {
	padding: 0.85rem 0.9rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	border-right: 1px solid rgba(255, 255, 255, 0.07);
	text-align: left;
	vertical-align: middle;
}

.q-company-param-table th:last-child,
.q-company-param-table td:last-child {
	border-right: 0;
}

.q-company-param-table tbody tr:last-child td {
	border-bottom: 0;
}

.q-company-param-table th {
	background: rgba(255, 255, 255, 0.035);
	color: #94a3b8;
	font-weight: 800;
}

.q-company-param-table tbody tr:nth-child(even) {
	background: rgba(255, 255, 255, 0.025);
}

.q-company-param-link {
	color: #22d3ee;
	font-weight: 800;
}

.q-company-example-list {
	display: grid;
	gap: 0.95rem;
}

.q-company-example-item pre {
	margin: 0;
	padding: 0.9rem 1rem;
	overflow-x: auto;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 0.55rem;
	background: rgba(0, 0, 0, 0.42);
	color: #e2e8f0;
	font-family: "JetBrains Mono", monospace;
	font-size: 0.75rem;
	line-height: 1.55;
	white-space: pre;
}

.q-company-example-item code {
	font-family: inherit;
	color: inherit;
}

.q-company-demo-card {
	margin-top: 1rem;
	padding: 1.15rem 1.25rem 1.25rem;
	border-radius: 1rem;
}

.q-company-demo-header {
	margin-bottom: 0.9rem;
}

.q-company-demo-copy {
	min-width: 4.25rem;
	min-height: 2.15rem;
}

.q-company-demo-toolbar {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0;
	overflow-x: auto;
}

.q-company-demo-tabs {
	display: flex;
	align-items: flex-end;
	min-width: 0;
	overflow-x: auto;
	scrollbar-width: thin;
	scrollbar-color: rgba(34, 211, 238, 0.28) rgba(15, 23, 42, 0.6);
}

.q-company-demo-tabs::-webkit-scrollbar {
	height: 8px;
}

.q-company-demo-tabs::-webkit-scrollbar-track {
	background: rgba(15, 23, 42, 0.6);
}

.q-company-demo-tabs::-webkit-scrollbar-thumb {
	border-radius: 999px;
	background: rgba(34, 211, 238, 0.28);
}

.q-company-demo-tab {
	min-width: 5rem;
	height: 2.45rem;
	padding: 0 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom-color: rgba(255, 255, 255, 0.08);
	border-radius: 0.65rem 0.65rem 0 0;
	background: rgba(255, 255, 255, 0.035);
	color: #94a3b8;
	font-size: 0.82rem;
	font-weight: 800;
	cursor: pointer;
	white-space: nowrap;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.q-company-demo-tab + .q-company-demo-tab {
	margin-left: -1px;
}

.q-company-demo-tab:hover,
.q-company-demo-tab.active {
	border-color: rgba(34, 211, 238, 0.38);
	background: rgba(34, 211, 238, 0.1);
	color: #22d3ee;
}

.q-company-demo-terminal {
	min-height: 420px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 0 0.75rem 0.75rem 0.75rem;
	background: rgba(0, 0, 0, 0.42);
}

.q-company-demo-terminal pre {
	min-height: 420px;
	margin: 0;
	padding: 3rem 1.8rem;
	overflow: auto;
	color: #dbeafe;
	font-family: Consolas, Monaco, "JetBrains Mono", "Courier New", monospace;
	font-size: 0.82rem;
	line-height: 1.6;
	tab-size: 2;
	white-space: pre-wrap;
	word-break: break-word;
}

.q-company-demo-cursor {
	display: inline-block;
	width: 0.45rem;
	height: 1rem;
	margin-left: 0.12rem;
	background: #22d3ee;
	box-shadow: 0 0 12px rgba(34, 211, 238, 0.45);
	vertical-align: -0.16rem;
	animation: q-company-demo-cursor-blink 1s steps(2, start) infinite;
}

.q-company-demo-comment {
	color: #64748b;
}

.q-company-demo-keyword {
	color: #22d3ee;
	font-weight: 800;
}

.q-company-demo-string {
	color: #34d399;
}

@keyframes q-company-demo-cursor-blink {
	0%,
	45% {
		opacity: 1;
	}

	46%,
	100% {
		opacity: 0;
	}
}

.q-company-list-card {
	margin-top: 0;
	padding: 1rem 1.25rem 1.2rem;
	border-radius: 1rem;
}

.q-company-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.85rem;
}

.q-company-card-title {
	color: #fff;
	font-size: 0.95rem;
	font-weight: 800;
	line-height: 1.2;
}

.q-company-status {
	display: none;
	align-items: center;
	gap: 0.4rem;
	color: #64748b;
	font-size: 0.72rem;
	font-weight: 700;
	white-space: nowrap;
}

.q-company-status-dot {
	width: 0.38rem;
	height: 0.38rem;
	border-radius: 999px;
	background: #22d3ee;
}

.q-company-config-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem 1.35rem;
}

.q-company-field {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.42rem;
}

.q-company-field-wide {
	grid-column: 1 / -1;
}

.q-company-toggle-field {
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 0.85rem;
	min-height: 2.75rem;
	padding: 0.15rem 0;
}

.q-company-region-row {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem 1.35rem;
	align-items: end;
}

.q-company-region-row.asn-enabled {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.q-company-asn-field.hidden,
.q-company-city-field.hidden {
	display: none;
}

.q-company-label {
	color: #94a3b8;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.q-company-toggle {
	position: relative;
	width: 42px;
	height: 24px;
	flex: 0 0 auto;
	cursor: pointer;
}

.q-company-toggle input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.q-company-toggle-slider {
	position: absolute;
	inset: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	transition: background-color 0.2s ease;
}

.q-company-toggle-slider::before {
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	width: 18px;
	height: 18px;
	border-radius: 999px;
	background: #fff;
	transition: transform 0.2s ease;
}

.q-company-toggle input:checked + .q-company-toggle-slider {
	background: #22d3ee;
}

.q-company-toggle input:checked + .q-company-toggle-slider::before {
	transform: translateX(18px);
}

.q-company-input-action {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 0.55rem;
}

.q-company-input,
.q-company-select .selected-display,
.q-company-export-select select,
.q-company-stepper input {
	width: 100%;
	min-height: 2.75rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.75rem;
	background: rgba(255, 255, 255, 0.04);
	color: #e2e8f0;
	font-family: "JetBrains Mono", monospace;
	font-size: 0.9rem;
	outline: none;
}

.q-company-input {
	padding: 0 1rem;
}

.q-company-code-input {
	font-size: 0.8rem;
}

.q-company-input:focus,
.q-company-select .selected-display:hover,
.q-company-export-select select:focus,
.q-company-stepper input:focus {
	border-color: rgba(34, 211, 238, 0.65);
}

.q-company-select .selected-display {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0 1rem;
	font-size: 0.9rem;
	cursor: pointer;
}

.q-company-select .selected-text {
	min-width: 0;
	flex: 1 1 auto;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.q-company-select .selected-text.is-placeholder {
	color: #64748b;
}

.q-company-select .selected-display > svg {
	width: 1rem;
	height: 1rem;
	flex: 0 0 auto;
	color: #475569;
}

.q-company-select-clear-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.25rem;
	height: 1.25rem;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: #64748b;
	cursor: pointer;
	flex: 0 0 auto;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.q-company-select-clear-btn.hidden {
	display: none;
}

.q-company-select-clear-btn:hover {
	background: rgba(34, 211, 238, 0.1);
	color: #22d3ee;
}

.q-company-select-clear-btn svg {
	width: 0.85rem;
	height: 0.85rem;
}

.q-company-select .dropdown-panel {
	z-index: 40;
}

.q-company-country-option {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.75rem;
	width: 100%;
}

.q-company-country-name {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.q-company-country-code {
	color: #94a3b8;
	font-family: "JetBrains Mono", monospace;
	font-size: 0.8rem;
	white-space: nowrap;
}

.q-company-copy-btn,
.q-company-outline-btn,
.q-company-primary-small-btn,
.q-company-primary-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 0.75rem;
	font-size: 0.8rem;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.q-company-copy-btn {
	min-width: 3.5rem;
	min-height: 2.75rem;
	border: 1px solid rgba(34, 211, 238, 0.28);
	background: rgba(34, 211, 238, 0.1);
	color: #22d3ee;
}

.q-company-copy-btn:hover {
	background: rgba(34, 211, 238, 0.18);
}

.q-company-primary-btn {
	width: 100%;
	min-height: 2.75rem;
	gap: 0.45rem;
	background: #22d3ee;
	color: #020617;
	box-shadow: 0 0 18px rgba(34, 211, 238, 0.18);
}

.q-company-primary-btn svg {
	width: 0.95rem;
	height: 0.95rem;
	color: #f97316;
}

.q-company-primary-btn:hover,
.q-company-primary-small-btn:hover {
	background: #38e3f7;
	box-shadow: 0 0 26px rgba(34, 211, 238, 0.34);
	transform: translateY(-1px);
}

.q-company-count-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(10rem, 0.45fr);
	gap: 0.75rem;
	align-items: center;
}

.q-company-count-generate-btn {
	width: auto;
	min-width: 10rem;
}

.q-company-generate-field {
	justify-content: flex-end;
}

.q-company-session-field {
	grid-column: 1 / -1;
}

.q-company-session-row {
	display: grid;
	grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
	gap: 1rem;
	align-items: end;
}

.q-company-sticky-options {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem 1.35rem;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 0.65rem;
	background: rgba(255, 255, 255, 0.025);
}

.q-company-sticky-options.hidden {
	display: none;
}

.q-company-session-row .q-company-sticky-options {
	grid-column: auto;
	grid-template-columns: minmax(190px, max-content) minmax(140px, max-content);
	gap: 0.75rem 1rem;
	align-items: end;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.q-company-session-row .q-company-sticky-options.hidden {
	display: none;
}

.q-company-session-row .q-company-sticky-options .q-company-field {
	gap: 0.35rem;
}

.q-company-session-row .q-company-stepper {
	width: max-content;
}

.q-company-stepper {
	display: inline-flex;
	align-items: center;
}

.q-company-stepper button {
	width: 2.75rem;
	min-height: 2.75rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
	color: #cbd5e1;
	font-weight: 800;
}

.q-company-stepper button:first-child {
	border-radius: 0.75rem 0 0 0.75rem;
}

.q-company-stepper button:last-child {
	border-radius: 0 0.75rem 0.75rem 0;
}

.q-company-stepper input {
	width: 5rem;
	border-right: 0;
	border-left: 0;
	border-radius: 0;
	text-align: center;
}

.q-company-radio-row {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	min-height: 2.75rem;
	color: #cbd5e1;
	font-size: 0.9rem;
}

.q-company-radio-row label {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	cursor: pointer;
}

.q-company-radio-row input {
	accent-color: #22d3ee;
}

.q-company-list-header {
	align-items: flex-start;
	margin-bottom: 0.55rem;
}

.q-company-list-header p {
	margin: 0.45rem 0 0;
	color: #475569;
	font-size: 0.68rem;
	line-height: 1.45;
}

.q-company-output {
	min-height: 140px;
	margin: 0;
	padding: 0.9rem;
	overflow: auto;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 0.6rem;
	background: rgba(0, 0, 0, 0.38);
	color: #34d399;
	font-family: "JetBrains Mono", monospace;
	font-size: 0.75rem;
	line-height: 1.6;
	white-space: pre-wrap;
	word-break: break-all;
}

.q-company-output-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-top: 0.6rem;
	flex-wrap: wrap;
}

.q-company-export-select,
.q-company-output-actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.q-company-export-select span {
	color: #94a3b8;
	font-size: 0.7rem;
}

.q-company-export-select select {
	width: auto;
	min-height: 1.85rem;
	padding: 0 1.9rem 0 0.65rem;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23475569' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.55rem center;
	cursor: pointer;
}

.q-company-outline-btn,
.q-company-primary-small-btn {
	min-height: 2.15rem;
	padding: 0 1rem;
}

.q-company-outline-btn {
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: transparent;
	color: #cbd5e1;
}

.q-company-outline-btn:hover {
	border-color: rgba(34, 211, 238, 0.55);
	color: #fff;
	background: rgba(34, 211, 238, 0.04);
}

.q-company-primary-small-btn {
	background: #22d3ee;
	color: #020617;
	box-shadow: 0 0 18px rgba(34, 211, 238, 0.18);
}

.q-company-warning {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin-top: 0.8rem;
	padding: 0.75rem 1rem;
	border: 1px solid rgba(245, 158, 11, 0.35);
	border-radius: 0.75rem;
	background: rgba(245, 158, 11, 0.06);
	color: #fbbf24;
	font-size: 0.78rem;
	font-weight: 800;
}

.q-company-warning svg {
	width: 1.05rem;
	height: 1.05rem;
	flex: 0 0 auto;
}

@media (max-width: 1280px) {
	.q-company-overview-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.q-company-cdk-card {
		grid-column: 1 / -1;
	}
}

@media (max-width: 768px) {
	.personal-proxy-header {
		align-items: flex-start;
		flex-direction: column;
	}

	.personal-proxy-tab {
		flex: 1 0 auto;
		padding: 0 0.9rem;
	}

	.dynamic-residential-segment {
		width: 100%;
	}

	.dynamic-residential-segment .seg-item {
		flex: 1 1 0;
	}

	.dynamic-residential-overview {
		grid-template-columns: 1fr;
	}

	.q-company-overview-row,
	.dynamic-residential-traffic-metrics {
		grid-template-columns: 1fr;
	}

	.q-company-cdk-card .q-company-cdk-row {
		grid-template-columns: 1fr;
	}

	.q-company-gift-icon {
		display: none;
	}

	.q-company-card-header,
	.q-company-output-toolbar,
	.q-company-demo-toolbar {
		align-items: flex-start;
		flex-direction: column;
	}

	.q-company-config-grid,
	.q-company-region-row,
	.q-company-region-row.asn-enabled,
	.q-company-docs-grid,
	.q-company-sticky-options {
		grid-template-columns: 1fr;
	}

	.q-company-session-row,
	.q-company-session-row .q-company-sticky-options,
	.q-company-count-row {
		grid-template-columns: 1fr;
	}

	.q-company-session-row .q-company-stepper {
		width: 100%;
	}

	.q-company-session-row .q-company-stepper input {
		flex: 1 1 auto;
		width: 100%;
	}

	.q-company-field-wide {
		grid-column: auto;
	}

	.q-company-account-card-header,
	.q-company-account-modal-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.q-company-account-select-field {
		max-width: none;
	}

	.q-company-account-table {
		min-width: 780px;
	}

	.q-company-output-actions,
	.q-company-demo-tabs,
	.q-company-primary-btn,
	.q-company-outline-btn,
	.q-company-primary-small-btn {
		width: 100%;
	}

	.q-company-demo-copy {
		align-self: stretch;
		width: 100%;
	}

	.q-company-demo-terminal {
		border-radius: 0.75rem;
	}

	.q-company-demo-terminal pre {
		min-height: 360px;
		padding: 1.4rem 1rem;
		font-size: 0.76rem;
	}
}
