:root {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	font-weight: 400;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 50%, #1a1a1a 100%);
	min-height: 100vh;
	color: #e0e0e0;
	padding-top: 70px;
	padding-bottom: 70px;
}

.navbar {
	background: rgba(30, 30, 30, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	padding: 12px 0;
}

.navbar > .container-fluid {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
}

.navbar-topline {
	align-items: center;
	display: flex;
	flex: 0 0 100%;
	flex-wrap: nowrap;
	min-width: 0;
	width: 100%;
}

.navbar-brand {
	flex: 0 0 auto;
	margin-right: 1rem;
	min-width: 0;
}

.nav-logo {
	height: 44px;
	max-width: min(180px, calc(100vw - 120px));
	object-fit: cover;
	width: auto;
}

.brand-text {
	font-size: 20px;
	font-weight: 600;
	color: #ffffff;
}

.navbar-nav .nav-link {
	align-items: center;
	color: #b0b0b0;
	display: inline-flex;
	gap: 0.4rem;
	padding: 8px 16px;
	border-radius: 6px;
	transition: all 0.3s ease;
	font-size: 15px;
	white-space: nowrap;
}

.dropdown-item {
	align-items: center;
	display: flex;
	white-space: nowrap;
}

@media (max-width: 991.98px) {
	.navbar-collapse {
		flex-basis: 100%;
		margin-top: 0.75rem;
		width: 100%;
	}

	.navbar-nav {
		align-items: flex-end;
	}

	.navbar-nav .nav-link {
		display: flex;
		justify-content: flex-end;
		width: 100%;
	}

	.navbar-nav .dropdown-menu {
		position: static;
		text-align: right;
	}

	.dropdown-item {
		justify-content: flex-end;
	}
}

@media (min-width: 992px) {
	.navbar > .container-fluid {
		flex-wrap: nowrap;
	}

	.navbar-topline {
		flex: 0 0 auto;
		width: auto;
	}

	.navbar-expand-izikart .navbar-toggler {
		display: none;
	}

	.navbar-expand-izikart .navbar-collapse {
		display: flex !important;
		flex-basis: auto;
		margin-top: 0;
		order: 2;
	}

	.navbar-expand-izikart .navbar-nav {
		flex-direction: row;
	}

	.navbar-expand-izikart .navbar-nav .dropdown-menu {
		position: absolute;
	}
}

	.navbar-nav .nav-link:hover,
	.navbar-nav .nav-link.active {
		color: #ffffff;
		background: rgba(74, 158, 255, 0.15);
	}

.dropdown-menu {
	background: rgba(35, 35, 35, 0.98);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
	padding: 8px;
	margin-top: 8px;
}

.dropdown-item {
	color: #d0d0d0;
	padding: 10px 16px;
	border-radius: 6px;
	transition: all 0.2s ease;
}

	.dropdown-item:hover {
		background: rgba(74, 158, 255, 0.2);
		color: #ffffff;
	}

.dropdown-divider {
	border-color: rgba(255, 255, 255, 0.1);
	margin: 8px 0;
}

.admin-submenu-toggle {
	gap: 0.55rem;
	width: 100%;
}

.admin-submenu-chevron {
	font-size: 0.68rem;
	margin-left: auto;
	transition: transform 0.2s ease;
}

.admin-submenu-toggle[aria-expanded="true"] .admin-submenu-chevron {
	transform: rotate(180deg);
}

.admin-submenu-menu {
	border-left: 1px solid rgba(74, 158, 255, 0.3);
	margin: 0.25rem 0 0.25rem 1rem;
	padding-left: 0.45rem;
}

.admin-submenu-menu .dropdown-item {
	font-size: 0.88rem;
	padding-bottom: 0.55rem;
	padding-top: 0.55rem;
}

.audit-total {
	align-items: center;
	background: rgba(74, 158, 255, 0.12);
	border: 1px solid rgba(74, 158, 255, 0.3);
	border-radius: 8px;
	color: #8ec1ff;
	display: inline-flex;
	font-size: 0.86rem;
	font-weight: 700;
	gap: 0.55rem;
	padding: 0.65rem 0.85rem;
}

.audit-filter-form {
	border-bottom: 1px solid rgba(255, 255, 255, 0.09);
	margin-bottom: 1.25rem;
	padding-bottom: 1.25rem;
}

.audit-filter-form .form-control,
.audit-filter-form .form-select {
	background-color: rgba(20, 20, 20, 0.86);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	color: #fff;
	min-height: 44px;
}

.audit-filter-form .form-control:focus,
.audit-filter-form .form-select:focus {
	border-color: #4a9eff;
	box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.12);
}

.audit-filter-actions {
	display: grid;
	gap: 0.5rem;
	grid-template-columns: minmax(0, 1fr) 44px;
}

.audit-filter-actions .btn {
	align-items: center;
	display: inline-flex;
	justify-content: center;
	min-height: 44px;
}

.audit-empty-state {
	align-items: center;
	color: #a7a7a7;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 310px;
	padding: 2rem;
	text-align: center;
}

.audit-empty-state svg,
.audit-empty-state i {
	color: #ff9f2f;
	font-size: 2.2rem;
	margin-bottom: 0.85rem;
}

.audit-empty-state strong {
	color: #fff;
	font-size: 1rem;
}

.audit-empty-state span {
	font-size: 0.84rem;
	margin-top: 0.25rem;
}

.audit-selected-company {
	align-items: center;
	background: rgba(74, 158, 255, 0.08);
	border-left: 3px solid #4a9eff;
	display: flex;
	gap: 0.75rem;
	margin-bottom: 1rem;
	padding: 0.65rem 0.85rem;
}

.audit-selected-company svg,
.audit-selected-company i {
	color: #78b5ff;
}

.audit-selected-company span {
	color: #929292;
	display: block;
	font-size: 0.68rem;
	font-weight: 800;
	text-transform: uppercase;
}

.audit-selected-company strong {
	color: #fff;
	display: block;
	font-size: 0.9rem;
}

.audit-table {
	min-width: 1280px;
}

.audit-date,
.audit-entity,
.audit-user,
.audit-company {
	color: #fff;
	font-weight: 700;
}

.audit-time,
.audit-user-meta,
.audit-http-status {
	color: #929292;
	font-size: 0.74rem;
	margin-top: 0.15rem;
}

.audit-action {
	background: rgba(255, 138, 0, 0.12);
	border: 1px solid rgba(255, 138, 0, 0.28);
	border-radius: 6px;
	color: #ffb45a;
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 800;
	padding: 0.35rem 0.5rem;
	white-space: nowrap;
}

.audit-entity-id {
	color: #8abfff;
	display: block;
	font-size: 0.7rem;
	margin-top: 0.2rem;
	max-width: 180px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.audit-actor-badge {
	align-items: center;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	color: #d8d8d8;
	display: inline-flex;
	font-size: 0.7rem;
	font-weight: 800;
	gap: 0.4rem;
	padding: 0.35rem 0.5rem;
	white-space: nowrap;
}

.audit-description-cell {
	min-width: 320px;
}

.audit-description {
	color: #ddd;
	font-size: 0.83rem;
	line-height: 1.4;
	white-space: normal;
}

.audit-request-meta {
	color: #858585;
	display: flex;
	flex-wrap: wrap;
	font-size: 0.7rem;
	gap: 0.35rem 0.85rem;
	margin-top: 0.45rem;
}

.audit-request-meta span {
	align-items: center;
	display: inline-flex;
	gap: 0.3rem;
}

@media (max-width: 991.98px) {
	.admin-submenu-toggle {
		justify-content: flex-end;
	}

	.admin-submenu-chevron {
		margin-left: 0.2rem;
	}

	.admin-submenu-menu {
		border-left: 0;
		border-right: 1px solid rgba(74, 158, 255, 0.3);
		margin-left: 0;
		margin-right: 1rem;
		padding-left: 0;
		padding-right: 0.45rem;
	}
}

.main-content {
	padding: 30px 0;
	min-height: calc(100vh - 140px);
}

.content-header {
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-breadcrumb .breadcrumb {
	--bs-breadcrumb-divider-color: #777;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.admin-breadcrumb .breadcrumb-item,
.admin-breadcrumb .breadcrumb-item::before {
	color: #8d8d8d;
}

.admin-breadcrumb .breadcrumb-item a {
	color: #ffb15c;
	text-decoration: none;
}

.admin-breadcrumb .breadcrumb-item a:hover {
	color: #ffd19b;
}

.admin-breadcrumb .breadcrumb-item.active {
	color: #e8e8e8;
}

.page-title {
	color: #ffffff;
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 8px;
}

.page-subtitle {
	color: #a0a0a0;
	font-size: 16px;
	margin-bottom: 0;
}

.data-grid-container {
	background: rgba(40, 40, 40, 0.8);
	border-radius: 12px;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.grid-header .search-box {
	max-width: 300px;
}

.search-box .form-control {
	background: rgba(30, 30, 30, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #ffffff;
	padding: 10px 16px;
	border-radius: 8px;
	transition: all 0.3s ease;
}

	.search-box .form-control:focus {
		background: rgba(35, 35, 35, 0.9);
		border-color: #4a9eff;
		box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.1);
		color: #ffffff;
		outline: none;
	}

	.search-box .form-control::placeholder {
		color: #666;
	}

.add-btn {
	background: linear-gradient(135deg, #4a9eff 0%, #357abd 100%);
	border: none;
	padding: 10px 20px;
	font-size: 15px;
	font-weight: 600;
	border-radius: 8px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(74, 158, 255, 0.3);
}

	.add-btn:hover {
		background: linear-gradient(135deg, #5aa8ff 0%, #4089cd 100%);
		box-shadow: 0 4px 12px rgba(74, 158, 255, 0.4);
		transform: translateY(-2px);
	}

.table-responsive {
	border-radius: 8px;
	overflow: hidden;
}

.data-table {
	margin-bottom: 0;
	color: #e0e0e0;
}

	.data-table thead {
		background: rgba(30, 30, 30, 0.9);
		border-bottom: 2px solid rgba(74, 158, 255, 0.3);
	}

		.data-table thead th {
			color: #ffffff;
			font-weight: 600;
			font-size: 14px;
			padding: 16px;
			border: none;
			text-transform: uppercase;
			letter-spacing: 0.5px;
		}

	.data-table tbody tr {
		background: rgba(35, 35, 35, 0.6);
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
		transition: all 0.2s ease;
	}

		.data-table tbody tr:hover {
			background: rgba(45, 45, 45, 0.8);
			transform: scale(1.01);
		}

	.data-table tbody td {
		padding: 16px;
		border: none;
		vertical-align: middle;
		color: #d0d0d0;
		font-size: 14px;
	}

.form-check-input {
	background-color: rgba(30, 30, 30, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.2);
	cursor: pointer;
}

	.form-check-input:checked {
		background-color: #4a9eff;
		border-color: #4a9eff;
	}

	.form-check-input:focus {
		border-color: #4a9eff;
		box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.1);
	}

.badge {
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.status-active {
	background: rgba(34, 197, 94, 0.2);
	color: #4ade80;
	border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-inactive {
	background: rgba(239, 68, 68, 0.2);
	color: #f87171;
	border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-pending {
	background: rgba(251, 191, 36, 0.2);
	color: #fbbf24;
	border: 1px solid rgba(251, 191, 36, 0.3);
}

.competition-confirm-payment-button {
	align-items: center;
	background: rgba(34, 197, 94, 0.1);
	border-color: rgba(34, 197, 94, 0.34);
	color: #4ade80;
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 700;
	gap: 0.45rem;
	white-space: nowrap;
}

.competition-confirm-payment-button:hover:not(:disabled) {
	background: rgba(34, 197, 94, 0.2);
	border-color: #22c55e;
	color: #86efac;
}

.competition-confirm-payment-button:disabled {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.1);
	color: #777;
}

.competition-entry-actions {
	align-items: center;
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	justify-content: center;
}

.competition-entry-actions .btn-action {
	margin: 0;
}

.competition-payment-method-form {
	align-items: center;
	display: inline-flex;
	flex-direction: column;
	gap: 0.35rem;
}

.competition-payment-method-label {
	color: #86efac;
	font-size: 0.68rem;
	font-weight: 800;
	text-transform: uppercase;
}

.competition-payment-method-group {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
}

.competition-payment-method-group button {
	background: rgba(34, 197, 94, 0.1);
	border: 1px solid rgba(34, 197, 94, 0.34);
	color: #4ade80;
	cursor: pointer;
	font-size: 0.66rem;
	font-weight: 800;
	line-height: 1;
	margin-left: -1px;
	padding: 0.48rem 0.55rem;
	text-transform: uppercase;
}

.competition-payment-method-group button:first-child {
	border-radius: 6px 0 0 6px;
	margin-left: 0;
}

.competition-payment-method-group button:last-child {
	border-radius: 0 6px 6px 0;
}

.competition-payment-method-group button:hover,
.competition-payment-method-group button:focus-visible {
	background: rgba(34, 197, 94, 0.22);
	border-color: #22c55e;
	color: #bbf7d0;
	outline: none;
	position: relative;
	z-index: 1;
}

.competition-undo-button {
	align-items: center;
	background: rgba(96, 165, 250, 0.1);
	border-color: rgba(96, 165, 250, 0.34);
	color: #93c5fd;
	display: inline-flex;
	font-size: 0.75rem;
	font-weight: 700;
	gap: 0.4rem;
	white-space: nowrap;
}

.competition-undo-button:hover {
	background: rgba(96, 165, 250, 0.2);
	border-color: #60a5fa;
	color: #bfdbfe;
}

.competition-dns-button {
	align-items: center;
	background: rgba(251, 191, 36, 0.1);
	border-color: rgba(251, 191, 36, 0.34);
	color: #fbbf24;
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 700;
	gap: 0.45rem;
	white-space: nowrap;
}

.competition-dns-button:hover {
	background: rgba(251, 191, 36, 0.2);
	border-color: #fbbf24;
	color: #fde68a;
}

.competition-delete-entry-button {
	align-items: center;
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 700;
	gap: 0.45rem;
	white-space: nowrap;
}

.competition-dns-badge {
	background: rgba(148, 163, 184, 0.16);
	border: 1px solid rgba(148, 163, 184, 0.32);
	color: #cbd5e1;
}

.competition-entry-dns-row > td {
	background: rgba(148, 163, 184, 0.035) !important;
	color: #8f98a5;
}

.competition-entry-dns-row .fw-semibold {
	color: #aeb6c1 !important;
	text-decoration: line-through;
}

.btn-action {
	background: rgba(74, 158, 255, 0.1);
	border: 1px solid rgba(74, 158, 255, 0.3);
	color: #4a9eff;
	padding: 6px 12px;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s ease;
	margin: 0 4px;
	font-size: 16px;
}

	.btn-action:hover {
		background: rgba(74, 158, 255, 0.2);
		border-color: #4a9eff;
		transform: translateY(-2px);
	}

.btn-delete {
	background: rgba(239, 68, 68, 0.1);
	border-color: rgba(239, 68, 68, 0.3);
	color: #f87171;
}

	.btn-delete:hover {
		background: rgba(239, 68, 68, 0.2);
		border-color: #ef4444;
	}

.grid-footer {
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.results-info {
	color: #a0a0a0;
	font-size: 14px;
}

.pagination {
	gap: 4px;
}

.page-link {
	background: rgba(30, 30, 30, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #d0d0d0;
	padding: 8px 14px;
	border-radius: 6px;
	transition: all 0.2s ease;
}

	.page-link:hover {
		background: rgba(74, 158, 255, 0.2);
		border-color: #4a9eff;
		color: #ffffff;
	}

.page-item.active .page-link {
	background: linear-gradient(135deg, #4a9eff 0%, #357abd 100%);
	border-color: #4a9eff;
	color: #ffffff;
}

.page-item.disabled .page-link {
	background: rgba(30, 30, 30, 0.5);
	border-color: rgba(255, 255, 255, 0.05);
	color: #666;
}

.footer {
	background: rgba(30, 30, 30, 0.95);
	backdrop-filter: blur(10px);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 18px 0;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.footer-text {
	color: #a0a0a0;
	font-size: 13px;
}

@media (max-width: 768px) {
	body {
		padding-top: 65px;
	}

	.page-title {
		font-size: 26px;
	}

	.data-grid-container {
		padding: 16px;
	}

	.grid-header .d-flex {
		flex-direction: column;
		gap: 12px;
	}

	.search-box {
		max-width: 100% !important;
	}

		.search-box .form-control {
			width: 100%;
		}

	.data-table {
		font-size: 13px;
	}

		.data-table thead th,
		.data-table tbody td {
			padding: 12px 8px;
		}

	.grid-footer {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}

	.footer .row {
		flex-direction: column;
		gap: 8px;
		text-align: center;
	}

	.footer .col-md-6.text-end {
		text-align: center !important;
	}
}

.stack-trace {
	font-family: 'Courier New', Consolas, 'Monaco', monospace;
	font-size: 0.875rem;
	line-height: 1.4;
	white-space: pre-wrap;
	word-break: break-all;
	overflow-x: auto;
	max-height: 180px;
	overflow-y: auto;
}

	.stack-trace::-webkit-scrollbar {
		width: 8px;
	}

	.stack-trace::-webkit-scrollbar-track {
		background: #2d3748;
		border-radius: 4px;
	}

	.stack-trace::-webkit-scrollbar-thumb {
		background: #4a5568;
		border-radius: 4px;
	}

		.stack-trace::-webkit-scrollbar-thumb:hover {
			background: #718096;
		}

@media (max-width: 768px) {
	.stack-trace {
		font-size: 0.75rem;
		max-height: 250px;
	}
}

.stack-trace code {
	color: #999;
	background: transparent;
}

.bg-gray {
	--bs-bg-opacity: 1;
	background-color: #444 !important;
}

.toast-success {
	background-color: #1F845A !important;
	color: #fff !important;
	font-weight: bold;
	border: 1px solid #ffffff33;
}

.toast-warning {
	background-color: #E2B203 !important;
	color: #000 !important;
	font-weight: bold;
	border: 1px solid #ffffff33;
}

.toast-danger {
	background-color: #F8285A !important;
	color: #fff !important;
	font-weight: bold;
	border: 1px solid #ffffff33;
}

.toast {
	--bs-toast-max-width: 600px;
}

h1 {
	color: #f8f9fa;
	font-weight: 600;
	letter-spacing: -0.5px;
}

.certificate-card {
	background-color: #212529;
	border: 1px solid #2d3238;
	border-radius: 8px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	height: 100%;
}

	.certificate-card:hover {
		transform: translateY(-4px);
		box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
	}

	.certificate-card .card-body {
		padding: 1.5rem;
	}

	.certificate-card .card-title {
		color: #f8f9fa;
		font-size: 1.25rem;
		font-weight: 600;
		margin-bottom: 1.25rem;
		padding-bottom: 0.75rem;
		border-bottom: 2px solid #2d3238;
	}

.certificate-info {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

.info-row {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.info-label {
	font-size: 0.75rem;
	font-weight: 600;
	color: #adb5bd;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.info-value {
	font-size: 0.9rem;
	color: #dee2e6;
	font-family: 'Courier New', monospace;
	word-break: break-all;
}

.badge {
	width: fit-content;
	padding: 0.375rem 0.75rem;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.3px;
}

.wrap-column {
	white-space: normal;
}

.user-session-button {
	align-items: center;
	aspect-ratio: 1;
	background: #ff8a00;
	border: 2px solid rgba(255, 255, 255, 0.85);
	border-radius: 50%;
	box-shadow: 0 0 0 1px rgba(255, 138, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.28);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	height: 44px;
	justify-content: center;
	line-height: 1;
	margin: 0 8px;
	transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
	width: 44px;
}

.user-session-button:hover,
.user-session-button:focus-visible {
	background: #ffa12b;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18), 0 6px 16px rgba(0, 0, 0, 0.34);
	color: #fff;
	outline: none;
	transform: translateY(-1px);
}

.user-session-button i {
	font-size: 1.1rem;
}

.user-session-panel {
	background: rgba(30, 30, 30, 0.98);
	border-left: 1px solid rgba(255, 255, 255, 0.14);
	color: #e0e0e0;
	max-width: 100vw;
	width: 380px;
}

.user-session-panel .offcanvas-header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.user-session-panel .offcanvas-title {
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
}

.session-logo-frame {
	align-items: center;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	display: flex;
	justify-content: center;
	margin-bottom: 1.25rem;
	min-height: 110px;
	padding: 1rem;
}

.session-company-logo {
	max-height: 150px;
	max-width: 100%;
	object-fit: contain;
}

.session-company-fallback {
	color: #ff8a00;
	font-size: 2rem;
}

.session-details-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin: 0;
}

.session-detail-row {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	padding: 0.85rem 1rem;
}

.session-detail-row dt {
	color: #a0a0a0;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin-bottom: 0.25rem;
	text-transform: uppercase;
}

.session-detail-row dd {
	color: #fff;
	font-size: 0.95rem;
	margin: 0;
	overflow-wrap: anywhere;
}

.session-role-badge {
	border: 1px solid transparent;
	border-radius: 999px;
	display: inline-flex;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	padding: 0.35rem 0.7rem;
	text-transform: uppercase;
}

.session-role-admin {
	background: rgba(239, 68, 68, 0.18);
	border-color: rgba(239, 68, 68, 0.34);
	color: #ff8a8a;
}

.session-role-proprietario {
	background: rgba(168, 85, 247, 0.18);
	border-color: rgba(168, 85, 247, 0.34);
	color: #d8b4fe;
}

.session-role-usuario {
	background: rgba(34, 197, 94, 0.18);
	border-color: rgba(34, 197, 94, 0.34);
	color: #86efac;
}

.session-actions {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: grid;
	gap: 0.65rem;
	margin-top: 1.25rem;
	padding-top: 1.25rem;
}

.session-password-button {
	background: rgba(255, 138, 0, 0.13);
	border: 1px solid rgba(255, 159, 47, 0.42);
	color: #fff;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.session-password-button:hover,
.session-password-button:focus-visible {
	background: rgba(255, 138, 0, 0.22);
	border-color: rgba(255, 177, 92, 0.7);
	color: #fff;
}

.session-logout-button {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: #e0e0e0;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.session-logout-button:hover,
.session-logout-button:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.28);
	color: #fff;
}

.admin-data-table {
	width: 100% !important;
}

.azure-face-total {
	align-items: center;
	background: rgba(255, 138, 0, 0.12);
	border: 1px solid rgba(255, 138, 0, 0.35);
	border-radius: 6px;
	color: #ffac4d;
	display: inline-flex;
	font-size: 0.82rem;
	font-weight: 700;
	gap: 8px;
	padding: 9px 12px;
	white-space: nowrap;
}

.azure-face-code {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 4px;
	color: #c8d7e8;
	display: inline-block;
	font-size: 0.76rem;
	max-width: 100%;
	overflow-wrap: anywhere;
	padding: 3px 6px;
	white-space: normal;
}

.azure-face-link {
	color: #fff;
	text-decoration: none;
	transition: color 0.18s ease;
}

.azure-face-link:hover {
	color: #ffac4d;
}

.azure-face-model-badge {
	background: rgba(132, 94, 247, 0.18);
	border: 1px solid rgba(174, 148, 255, 0.42);
	color: #d5c6ff;
}

.azure-face-count-badge {
	background: rgba(25, 135, 84, 0.2);
	border: 1px solid rgba(62, 190, 127, 0.4);
	color: #8de0b6;
	min-width: 34px;
}

.azure-face-delete-action {
	border-color: rgba(220, 53, 69, 0.5);
	color: #ff7b88;
}

.azure-face-delete-action:hover {
	background: rgba(220, 53, 69, 0.16);
	border-color: #dc3545;
	color: #ff9aa4;
}

.azure-face-user-data {
	color: #aeb7c2;
	font-family: Consolas, "Courier New", monospace;
	font-size: 0.76rem;
	max-width: 380px;
	overflow-wrap: anywhere;
}

.azure-face-id-list {
	display: flex;
	flex-direction: column;
	gap: 5px;
	min-width: 210px;
}

.azure-face-filter {
	max-width: 680px;
}

.azure-face-filter .form-label {
	color: #d8d8d8;
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
}

.admin-form .form-label {
	color: #d8d8d8;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.admin-form .form-control,
.admin-form .form-select {
	background-color: rgba(22, 22, 22, 0.86);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	color: #fff;
	min-height: 44px;
}

.admin-form .form-control:focus,
.admin-form .form-select:focus {
	background-color: rgba(26, 26, 26, 0.95);
	border-color: #ff8a00;
	box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.12);
	color: #fff;
}

.admin-form .form-control[readonly] {
	background-color: rgba(255, 255, 255, 0.06);
	color: #b8b8b8;
}

.admin-form [data-uppercase] {
	text-transform: uppercase;
}

.admin-form .form-select option {
	background-color: #242424;
	color: #fff;
}

.admin-form .input-group-text {
	background: rgba(255, 138, 0, 0.16);
	border-color: rgba(255, 255, 255, 0.14);
	color: #ffb15c;
	font-weight: 800;
}

.password-change-container {
	margin-left: auto;
	margin-right: auto;
	max-width: 820px;
}

.password-visibility-button {
	background: rgba(255, 138, 0, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: #ffb15c;
	min-width: 46px;
}

.password-visibility-button:hover,
.password-visibility-button:focus-visible {
	background: rgba(255, 138, 0, 0.24);
	border-color: rgba(255, 138, 0, 0.52);
	color: #fff;
}

.admin-database-input .form-control {
	border-left: 0;
}

.admin-switch-panel {
	align-items: center;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	display: flex;
	min-height: 44px;
	padding: 0.5rem 0.85rem;
}

.admin-status-toggle {
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	height: 34px;
	letter-spacing: 0;
	overflow: hidden;
	padding: 0.35rem 0.7rem 0.35rem 2.15rem;
	position: relative;
	text-align: center;
	transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
	width: 120px;
}

.admin-status-slider {
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.28);
	height: 22px;
	left: 5px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: left 0.18s ease;
	width: 22px;
}

.admin-status-text {
	position: relative;
	z-index: 1;
}

.admin-status-toggle.is-active {
	background: #1f845a;
	border-color: rgba(74, 222, 128, 0.5);
	box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
	padding-left: 0.7rem;
	padding-right: 2.15rem;
}

.admin-status-toggle.is-active .admin-status-slider {
	left: calc(100% - 27px);
}

.admin-status-toggle.is-inactive {
	background: #b4233a;
	border-color: rgba(248, 113, 113, 0.55);
	box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
}

.admin-feature-button-group {
	background: rgba(0, 0, 0, 0.16);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 12px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	overflow: hidden;
}

.admin-feature-button {
	align-items: center;
	background: rgba(255, 255, 255, 0.025);
	border: 0;
	color: #a9a9a9;
	display: flex;
	gap: .75rem;
	min-height: 82px;
	padding: .9rem 1rem;
	position: relative;
	text-align: left;
	transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.admin-feature-button + .admin-feature-button {
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-feature-icon {
	align-items: center;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	display: inline-flex;
	flex: 0 0 42px;
	font-size: 1.05rem;
	height: 42px;
	justify-content: center;
	transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.admin-feature-copy {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	line-height: 1.2;
	min-width: 0;
}

.admin-feature-copy strong {
	color: #e7e7e7;
	font-size: .88rem;
}

.admin-feature-copy small {
	font-size: .7rem;
	margin-top: .3rem;
}

.admin-feature-check {
	align-items: center;
	background: #fff;
	border-radius: 50%;
	color: #357abd;
	display: inline-flex;
	flex: 0 0 20px;
	font-size: .65rem;
	height: 20px;
	justify-content: center;
	opacity: 0;
	transform: scale(.72);
	transition: opacity .18s ease, transform .18s ease;
}

.admin-feature-button:hover {
	background: rgba(74, 158, 255, 0.09);
	color: #d6eaff;
}

.admin-feature-button:focus-visible {
	box-shadow: inset 0 0 0 2px #78b5ff;
	outline: none;
	z-index: 1;
}

.admin-feature-button.is-selected {
	background: linear-gradient(135deg, rgba(74, 158, 255, 0.34), rgba(53, 122, 189, 0.24));
	color: #dceeff;
	box-shadow: inset 0 -3px 0 #4a9eff;
}

.admin-feature-button.is-selected .admin-feature-icon {
	background: #357abd;
	border-color: #78b5ff;
	color: #fff;
}

.admin-feature-button.is-selected .admin-feature-copy strong {
	color: #fff;
}

.admin-feature-button.is-selected .admin-feature-check {
	opacity: 1;
	transform: scale(1);
}

.admin-competition-term-settings {
	background: rgba(0, 0, 0, 0.16);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	padding: 1.15rem;
}

.admin-competition-term-heading {
	align-items: center;
	display: flex;
	gap: 0.85rem;
	margin-bottom: 1rem;
}

.admin-competition-term-heading > span {
	align-items: center;
	background: rgba(237, 125, 11, 0.16);
	border: 1px solid rgba(255, 155, 56, 0.36);
	border-radius: 10px;
	color: #ffad5c;
	display: inline-flex;
	flex: 0 0 42px;
	font-size: 1.1rem;
	height: 42px;
	justify-content: center;
}

.admin-competition-term-heading h2 {
	color: #f2f2f2;
	font-size: 0.98rem;
	font-weight: 800;
	margin: 0 0 0.2rem;
}

.admin-competition-term-heading p {
	color: #a9a9a9;
	font-size: 0.78rem;
	margin: 0;
}

.admin-competition-term-text {
	line-height: 1.55;
	resize: vertical;
}

@media (max-width: 767.98px) {
	.admin-feature-button-group {
		grid-template-columns: 1fr;
	}

	.admin-feature-button + .admin-feature-button {
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}
}

.admin-status-toggle:hover,
.admin-status-toggle:focus-visible {
	color: #fff;
	outline: none;
	transform: translateY(-1px);
}

.time-slot-picker-toggle {
	background-color: rgba(255, 255, 255, 0.04);
	color: #e0e0e0;
	text-align: left;
}

.time-slot-picker-toggle:disabled {
	cursor: wait;
	opacity: .7;
}

.time-slot-picker-menu {
	background: #242424;
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: 0 12px 28px rgba(0, 0, 0, .35);
	max-height: 290px;
	overflow-y: auto;
	padding: .4rem;
	width: 100%;
}

.time-slot-option-wrapper {
	display: block;
}

.time-slot-option {
	border-radius: 6px;
	color: #d8d8d8;
	font-variant-numeric: tabular-nums;
	margin: 1px 0;
	padding: .48rem .65rem;
}

.time-slot-option:hover,
.time-slot-option:focus,
.time-slot-option.is-selected {
	background: rgba(74, 158, 255, .18);
	color: #fff;
}

.time-slot-option.is-selected {
	box-shadow: inset 3px 0 0 #4a9eff;
	font-weight: 700;
}

.time-slot-option:disabled,
.time-slot-option.is-occupied {
	background: rgba(248, 113, 113, .06);
	color: #777;
	cursor: not-allowed;
	opacity: .72;
	pointer-events: none;
}

.time-slot-picker .invalid-feedback {
	display: none;
}

.time-slot-picker-toggle.is-invalid + .time-slot-picker-menu + .invalid-feedback {
	display: block;
}

.admin-hash-input {
	font-family: Consolas, "Courier New", monospace;
}

.admin-form-actions {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: flex-end;
	margin-top: 1.5rem;
	padding-top: 1.25rem;
}

.cancel-btn {
	background: linear-gradient(135deg, #d92d4b 0%, #a61b34 100%);
	border: none;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(217, 45, 75, 0.3);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	padding: 10px 20px;
	transition: all 0.3s ease;
}

.cancel-btn:hover,
.cancel-btn:focus-visible {
	background: linear-gradient(135deg, #ee4261 0%, #bc2440 100%);
	box-shadow: 0 4px 12px rgba(217, 45, 75, 0.42);
	color: #fff;
	transform: translateY(-2px);
}

.admin-secondary-button {
	border-color: rgba(255, 255, 255, 0.22);
	color: #e6e6e6;
}

.admin-secondary-button:hover,
.admin-secondary-button:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.34);
	color: #fff;
}

.pilot-grid-photo {
	align-items: center;
	aspect-ratio: 1;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	display: inline-flex;
	height: 54px;
	justify-content: center;
	object-fit: cover;
	width: 54px;
}

.pilot-grid-photo-empty {
	background: rgba(255, 255, 255, 0.06);
	color: #ff8a00;
	font-size: 1.1rem;
}

.pilot-blood-badge {
	background: rgba(255, 138, 0, 0.14);
	border: 1px solid rgba(255, 138, 0, 0.36);
	color: #ffb15c;
}

.pilot-photo-panel {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 1rem;
}

.pilot-photo-columns {
	display: grid;
	gap: 0.85rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pilot-photo-box {
	min-width: 0;
}

.pilot-photo-title {
	color: #d8d8d8;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	margin-bottom: 0.45rem;
	text-transform: uppercase;
}

.pilot-photo-media {
	position: relative;
}

.pilot-photo-preview,
.pilot-photo-media,
.pilot-detail-photo {
	aspect-ratio: 1;
	background: rgba(22, 22, 22, 0.86);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	overflow: hidden;
	width: 100%;
}

.pilot-photo-preview,
.pilot-camera-placeholder,
.pilot-detail-photo {
	align-items: center;
	color: #ff8a00;
	display: flex;
	font-size: 3rem;
	justify-content: center;
}

.pilot-photo-preview img,
.pilot-camera,
.pilot-detail-photo img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.pilot-camera {
	display: block;
	opacity: 0;
}

.pilot-camera.is-active {
	opacity: 1;
}

.pilot-camera-placeholder {
	inset: 0;
	position: absolute;
}

.pilot-photo-actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 0.85rem;
}

.pilot-payment-group {
	background: rgba(22, 22, 22, 0.86);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	display: flex;
	min-height: 44px;
	overflow: hidden;
	width: 100%;
}

.pilot-payment-option {
	border: 0;
	border-radius: 0;
	color: #b8b8b8;
	flex: 1;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.pilot-payment-option:hover,
.pilot-payment-option:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.pilot-payment-option.is-selected {
	background: #ff8a00;
	color: #fff;
}

.schedule-deposit-group {
	background: rgba(22, 22, 22, 0.86);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	display: flex;
	min-height: 44px;
	overflow: hidden;
	width: 100%;
}

.schedule-deposit-option {
	border: 0;
	border-radius: 0;
	color: #b8b8b8;
	flex: 1;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.schedule-deposit-option:hover,
.schedule-deposit-option:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.schedule-deposit-option.is-selected {
	background: #ff8a00;
	color: #fff;
}

.pilot-payment-alert,
.pilot-payment-summary {
	align-items: center;
	background: rgba(251, 191, 36, 0.12);
	border: 1px solid rgba(251, 191, 36, 0.32);
	border-radius: 8px;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin-bottom: 1.5rem;
	padding: 1rem;
}

.pilot-payment-summary.is-ok {
	background: rgba(34, 197, 94, 0.1);
	border-color: rgba(34, 197, 94, 0.28);
}

.pilot-payment-summary.is-ok .pilot-payment-title {
	color: #4ade80;
}

.pilot-payment-summary.is-overdue {
	background: rgba(239, 68, 68, 0.12);
	border-color: rgba(239, 68, 68, 0.32);
}

.pilot-payment-summary.is-overdue .pilot-payment-title {
	color: #f87171;
}

.pilot-payment-title {
	color: #fbbf24;
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.pilot-payment-text {
	color: #f8e2a2;
	font-size: 0.92rem;
	margin-top: 0.2rem;
}

.pilot-payment-form {
	min-width: 280px;
}

.pilot-payment-actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	min-width: 280px;
}

.pilot-payment-form .form-label {
	color: #d8d8d8;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.payment-confirm-button {
	background: linear-gradient(135deg, #1f845a 0%, #166947 100%);
	border: none;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(31, 132, 90, 0.32);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	margin-top: 0.75rem;
	padding: 10px 20px;
	transition: all 0.3s ease;
	width: 100%;
}

.payment-confirm-button:hover,
.payment-confirm-button:focus-visible {
	background: linear-gradient(135deg, #26a16d 0%, #1f845a 100%);
	box-shadow: 0 4px 12px rgba(31, 132, 90, 0.44);
	color: #fff;
	transform: translateY(-2px);
}

.pilot-payment-rollback-button {
	border: none;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(255, 193, 7, 0.26);
	color: #5c4200;
	font-size: 15px;
	font-weight: 800;
	padding: 10px 20px;
	width: 100%;
}

.pilot-payment-rollback-button:hover,
.pilot-payment-rollback-button:focus-visible {
	color: #4a3500;
}

.pilot-detail-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pilot-detail-item {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	padding: 0.9rem 1rem;
}

.pilot-detail-item span {
	color: #a0a0a0;
	display: block;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	margin-bottom: 0.35rem;
	text-transform: uppercase;
}

.pilot-detail-item strong {
	color: #fff;
	display: block;
	font-size: 0.98rem;
	font-weight: 600;
	overflow-wrap: anywhere;
}

.pilot-detail-wide {
	grid-column: 1 / -1;
}

.dashboard-hero {
	align-items: center;
	background: linear-gradient(135deg, rgba(255, 138, 0, 0.16), rgba(255, 255, 255, 0.04));
	border: 1px solid rgba(255, 138, 0, 0.22);
	border-radius: 8px;
	display: flex;
	justify-content: space-between;
	margin-bottom: 1.5rem;
	padding: 1.25rem;
}

.dashboard-kicker {
	color: #ffb55a;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	margin-bottom: 0.25rem;
	text-transform: uppercase;
}

.dashboard-hero-metrics {
	display: grid;
	gap: 0.75rem;
	grid-template-columns: repeat(3, minmax(130px, 1fr));
}

.dashboard-hero-metric {
	background: rgba(10, 10, 10, 0.38);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 0.85rem 1rem;
	text-align: right;
}

.dashboard-hero-metric span,
.dashboard-pilot-total span,
.dashboard-pilot-stat span {
	color: #a9a9a9;
	display: block;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.dashboard-hero-metric strong {
	color: #fff;
	display: block;
	font-size: 1.7rem;
	line-height: 1.1;
	margin-top: 0.25rem;
}

.dashboard-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: minmax(0, 1fr) 340px;
}

.dashboard-main,
.dashboard-side {
	background: rgba(22, 22, 22, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
	padding: 1.25rem;
}

.dashboard-section-header {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.dashboard-section-header.compact {
	align-items: flex-start;
}

.dashboard-section-header h2 {
	color: #fff;
	font-size: 1.05rem;
	font-weight: 800;
	margin: 0;
}

.dashboard-section-header p {
	color: #a6a6a6;
	font-size: 0.88rem;
	margin: 0.25rem 0 0;
}

.dashboard-link-button,
.dashboard-pilot-button {
	background: rgba(255, 138, 0, 0.14);
	border: 1px solid rgba(255, 138, 0, 0.34);
	border-radius: 8px;
	color: #ffb55a;
	font-weight: 800;
}

.dashboard-link-button:hover,
.dashboard-link-button:focus-visible,
.dashboard-pilot-button:hover,
.dashboard-pilot-button:focus-visible {
	background: rgba(255, 138, 0, 0.24);
	border-color: rgba(255, 138, 0, 0.5);
	color: #fff;
}

.dashboard-empty-state {
	align-items: center;
	border: 1px dashed rgba(255, 255, 255, 0.16);
	border-radius: 8px;
	color: #b8b8b8;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 340px;
	padding: 2rem;
	text-align: center;
}

.dashboard-empty-state svg,
.dashboard-empty-state i {
	color: #ffb55a;
	font-size: 2rem;
	margin-bottom: 0.9rem;
}

.dashboard-empty-state strong {
	color: #fff;
	font-size: 1rem;
	margin-bottom: 0.25rem;
}

.dashboard-schedule-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.dashboard-schedule-item {
	align-items: center;
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	color: inherit;
	display: grid;
	gap: 1rem;
	grid-template-columns: 88px minmax(0, 1fr) 34px;
	padding: 0.95rem;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.dashboard-schedule-item:hover,
.dashboard-schedule-item:focus-visible {
	background: rgba(255, 138, 0, 0.1);
	border-color: rgba(255, 138, 0, 0.42);
	color: inherit;
	transform: translateY(-1px);
}

.dashboard-schedule-time {
	background: rgba(255, 138, 0, 0.14);
	border: 1px solid rgba(255, 138, 0, 0.28);
	border-radius: 8px;
	padding: 0.65rem 0.45rem;
	text-align: center;
}

.dashboard-schedule-time span {
	color: #fff;
	display: block;
	font-size: 1.25rem;
	font-weight: 900;
	line-height: 1;
}

.dashboard-schedule-time small {
	color: #ffbd6b;
	display: block;
	font-size: 0.72rem;
	font-weight: 800;
	margin-top: 0.25rem;
}

.dashboard-schedule-title {
	color: #fff;
	font-size: 1rem;
	font-weight: 800;
	margin-bottom: 0.35rem;
	overflow-wrap: anywhere;
}

.dashboard-schedule-meta {
	color: #b8b8b8;
	display: flex;
	flex-wrap: wrap;
	font-size: 0.84rem;
	gap: 0.45rem 1rem;
}

.dashboard-schedule-action {
	color: #ffb55a;
	text-align: center;
}

.dashboard-pilot-total {
	background: linear-gradient(135deg, rgba(255, 138, 0, 0.2), rgba(255, 255, 255, 0.04));
	border: 1px solid rgba(255, 138, 0, 0.26);
	border-radius: 8px;
	margin-bottom: 1rem;
	padding: 1rem;
}

.dashboard-pilot-total strong {
	color: #fff;
	display: block;
	font-size: 2.2rem;
	line-height: 1;
	margin-top: 0.35rem;
}

.dashboard-pilot-stats {
	display: grid;
	gap: 0.75rem;
}

.dashboard-pilot-stat {
	align-items: center;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	display: flex;
	gap: 0.75rem;
	padding: 0.85rem;
}

.dashboard-pilot-stat svg,
.dashboard-pilot-stat i {
	color: #ffb55a;
	font-size: 1.1rem;
	width: 22px;
}

.dashboard-pilot-stat strong {
	color: #fff;
	display: block;
	font-size: 1.25rem;
	line-height: 1.1;
	margin-top: 0.15rem;
}

.dashboard-pilot-stat.is-ok {
	background: rgba(34, 197, 94, 0.1);
	border-color: rgba(34, 197, 94, 0.26);
}

.dashboard-pilot-stat.is-ok svg,
.dashboard-pilot-stat.is-ok i {
	color: #4ade80;
}

.dashboard-pilot-stat.is-danger {
	background: rgba(239, 68, 68, 0.1);
	border-color: rgba(239, 68, 68, 0.26);
}

.dashboard-pilot-stat.is-danger svg,
.dashboard-pilot-stat.is-danger i {
	color: #f87171;
}

.dashboard-pilot-button {
	margin-top: 1rem;
	width: 100%;
}

.dashboard-face-button {
	background: #ff8a00;
	border: 1px solid #ff8a00;
	border-radius: 8px;
	color: #fff;
	font-weight: 800;
	margin-top: 1rem;
	width: 100%;
}

.dashboard-face-button:hover,
.dashboard-face-button:focus-visible {
	background: #e67c00;
	border-color: #e67c00;
	color: #fff;
}

.facial-recognition-modal {
	background: #171717;
	border: 1px solid rgba(255, 138, 0, 0.3);
	border-radius: 8px;
	color: #fff;
	overflow: hidden;
}

.facial-recognition-modal .modal-header,
.facial-recognition-modal .modal-footer {
	border-color: rgba(255, 255, 255, 0.1);
}

.facial-recognition-modal .modal-title {
	font-size: 1.1rem;
	font-weight: 800;
	letter-spacing: 0;
}

.facial-recognition-kicker {
	color: #ffae4d;
	display: block;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	margin-bottom: 0.15rem;
	text-transform: uppercase;
}

.facial-recognition-camera {
	aspect-ratio: 4 / 3;
	background: #090909;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}

.facial-recognition-camera video {
	display: none;
	height: 100%;
	object-fit: cover;
	transform: scaleX(-1);
	width: 100%;
}

.facial-recognition-camera video.is-active {
	display: block;
}

.facial-recognition-placeholder {
	align-items: center;
	color: #999;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	inset: 0;
	justify-content: center;
	position: absolute;
}

.facial-recognition-placeholder svg,
.facial-recognition-placeholder i {
	color: #ff9a20;
	font-size: 2rem;
}

.facial-recognition-frame {
	border: 2px solid rgba(255, 255, 255, 0.78);
	border-radius: 46% 46% 42% 42%;
	height: 66%;
	left: 50%;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 44%;
}

.facial-recognition-status {
	align-items: center;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 8px;
	color: #bbb;
	display: flex;
	font-size: 0.86rem;
	gap: 0.65rem;
	margin-top: 1rem;
	padding: 0.75rem 0.85rem;
}

.facial-recognition-status svg,
.facial-recognition-status i {
	color: #ffae4d;
	flex: 0 0 auto;
}

.facial-recognition-status.is-ready {
	background: rgba(34, 197, 94, 0.1);
	border-color: rgba(34, 197, 94, 0.28);
	color: #c8f7d7;
}

.facial-recognition-status.is-ready svg,
.facial-recognition-status.is-ready i {
	color: #4ade80;
}

.facial-recognition-status.is-error {
	background: rgba(239, 68, 68, 0.1);
	border-color: rgba(239, 68, 68, 0.28);
	color: #fecaca;
}

.facial-recognition-status.is-error svg,
.facial-recognition-status.is-error i {
	color: #f87171;
}

.facial-recognition-status.is-loading svg,
.facial-recognition-status.is-loading i {
	color: #ffae4d;
}

.schedule-detail-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.indoor-payment-date {
	color: #919191;
	font-size: 0.72rem;
	margin-top: 0.25rem;
	white-space: nowrap;
}

.indoor-payment-details {
	display: flex;
	flex-direction: column;
	font-size: .75rem;
	line-height: 1.25;
	margin-top: .3rem;
}

.indoor-payment-details strong {
	color: #dff8e8;
}

.indoor-payment-details span {
	color: #a7a7a7;
	margin-top: .12rem;
}

.indoor-payment-action {
	margin-left: 0.3rem;
}

.indoor-payment-action.is-pay {
	background: rgba(34, 197, 94, 0.13);
	border-color: rgba(34, 197, 94, 0.36);
	color: #4ade80;
}

.indoor-payment-action.is-pay:hover,
.indoor-payment-action.is-pay:focus-visible {
	background: rgba(34, 197, 94, 0.24);
	border-color: rgba(34, 197, 94, 0.58);
	color: #dcfce7;
}

.indoor-payment-action.is-undo {
	background: rgba(255, 193, 7, 0.13);
	border-color: rgba(255, 193, 7, 0.38);
	color: #d5a20a;
}

.indoor-payment-action.is-undo:hover,
.indoor-payment-action.is-undo:focus-visible {
	background: rgba(255, 193, 7, 0.24);
	border-color: rgba(255, 193, 7, 0.58);
	color: #f1c232;
}

.indoor-move-action {
	background: rgba(74, 158, 255, .12);
	border-color: rgba(74, 158, 255, .36);
	color: #78b5ff;
	margin-left: .3rem;
}

.indoor-move-action:hover,
.indoor-move-action:focus-visible {
	background: rgba(74, 158, 255, .24);
	border-color: rgba(74, 158, 255, .58);
	color: #dceeff;
}

.indoor-move-action:disabled {
	cursor: not-allowed;
	opacity: .42;
	pointer-events: none;
}

.schedule-print-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: flex-end;
	margin-top: 1.5rem;
	padding-top: 1.25rem;
}

.qr-maintenance-panel {
	display: grid;
	gap: 1.25rem;
}

.qr-maintenance-summary {
	align-items: center;
	display: flex;
	gap: 1rem;
}

.qr-maintenance-icon {
	align-items: center;
	background: rgba(255, 138, 0, 0.16);
	border: 1px solid rgba(255, 138, 0, 0.34);
	border-radius: 8px;
	color: #ffb55a;
	display: flex;
	font-size: 2rem;
	height: 74px;
	justify-content: center;
	width: 74px;
}

.qr-maintenance-summary h2 {
	color: #fff;
	font-size: 1.15rem;
	font-weight: 800;
	margin: 0 0 0.2rem;
}

.qr-maintenance-summary p,
.qr-updated-at {
	color: #a8a8a8;
	margin: 0;
}

.qr-link-box {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	padding: 1rem;
}

.qr-link-box span {
	color: #a8a8a8;
	display: block;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	margin-bottom: 0.45rem;
	text-transform: uppercase;
}

.qr-link-box strong {
	color: #fff;
	display: block;
	font-size: 0.95rem;
	overflow-wrap: anywhere;
}

.qr-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.qr-print-body,
.qr-public-body {
	background: #f4f4f4;
	color: #111;
	min-height: 100vh;
}

.qr-print-page,
.qr-public-body {
	align-items: center;
	display: flex;
	justify-content: center;
	padding: 2rem;
}

.qr-print-sheet {
	align-items: center;
	background: #fff;
	border: 1px solid #ddd;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
	display: flex;
	flex-direction: column;
	min-height: 880px;
	padding: 3rem;
	text-align: center;
	width: min(720px, 100%);
}

.qr-print-actions {
	position: fixed;
	right: 1.5rem;
	top: 1.5rem;
	z-index: 2;
}

.qr-print-brand {
	color: #ff8a00;
	font-size: 1rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	margin-bottom: 1.5rem;
}

.qr-print-sheet h1 {
	color: #111;
	font-size: 2.4rem;
	font-weight: 900;
	margin: 0;
}

.qr-print-sheet p {
	color: #333;
	font-size: 1.3rem;
	font-weight: 700;
	margin: 0.5rem 0 2rem;
}

.qr-print-code {
	background: #fff;
	border: 10px solid #fff;
	margin: 0 auto 2rem;
	width: min(440px, 100%);
}

.qr-print-code svg {
	display: block;
	height: auto;
	width: 100%;
}

.qr-print-url {
	border-top: 1px solid #ddd;
	color: #444;
	font-size: 0.9rem;
	line-height: 1.4;
	max-width: 540px;
	overflow-wrap: anywhere;
	padding-top: 1rem;
}

.qr-public-card {
	background: #151515;
	border: 1px solid rgba(255, 138, 0, 0.26);
	border-radius: 8px;
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
	color: #fff;
	max-width: 440px;
	padding: 2rem;
	text-align: center;
	width: 100%;
}

.qr-public-logo {
	align-items: center;
	background: rgba(255, 138, 0, 0.16);
	border: 1px solid rgba(255, 138, 0, 0.34);
	border-radius: 50%;
	color: #ffb55a;
	display: flex;
	font-size: 2rem;
	height: 76px;
	justify-content: center;
	margin: 0 auto 1rem;
	width: 76px;
}

.qr-public-card h1 {
	font-size: 2rem;
	font-weight: 900;
	margin: 0;
}

.qr-public-card p {
	color: #ffb55a;
	font-size: 1.05rem;
	font-weight: 800;
	margin: 0.35rem 0 1rem;
}

.qr-public-card span {
	color: #cfcfcf;
}

.checkin-public-body {
	align-items: flex-start;
	background: #101010;
	padding: 1rem;
}

.checkin-page {
	margin: 0 auto;
	max-width: 760px;
	width: 100%;
}

.checkin-header {
	align-items: center;
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
}

.checkin-header .qr-public-logo {
	flex: 0 0 auto;
	margin: 0;
}

.checkin-header h1 {
	color: #fff;
	font-size: 2rem;
	font-weight: 900;
	margin: 0;
}

.checkin-header p {
	color: #ffb55a;
	font-size: 1rem;
	font-weight: 800;
	margin: 0.2rem 0 0;
}

.checkin-card {
	background: rgba(22, 22, 22, 0.96);
	border: 1px solid rgba(255, 138, 0, 0.22);
	border-radius: 8px;
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
	padding: 1.25rem;
}

.checkin-card .form-label {
	color: #d8d8d8;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.checkin-card .form-control,
.checkin-card .form-select {
	background-color: rgba(12, 12, 12, 0.86);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	color: #fff;
	min-height: 46px;
}

.checkin-card input.form-control {
	text-transform: uppercase;
}

.checkin-card .form-control:focus,
.checkin-card .form-select:focus {
	background-color: rgba(12, 12, 12, 0.96);
	border-color: rgba(255, 138, 0, 0.72);
	box-shadow: 0 0 0 0.2rem rgba(255, 138, 0, 0.16);
	color: #fff;
}

.checkin-actions {
	margin-top: 1.25rem;
}

.checkin-submit-button {
	background: linear-gradient(135deg, #ff8a00 0%, #e06f00 100%);
	border: none;
	border-radius: 8px;
	box-shadow: 0 10px 22px rgba(255, 138, 0, 0.22);
	color: #fff;
	font-size: 1rem;
	font-weight: 900;
	padding: 0.85rem 1.2rem;
}

.checkin-submit-button:hover,
.checkin-submit-button:focus {
	background: linear-gradient(135deg, #ff9a1f 0%, #ef7a00 100%);
	box-shadow: 0 12px 26px rgba(255, 138, 0, 0.32);
	color: #fff;
	transform: translateY(-1px);
}

.checkin-success,
.checkin-empty {
	align-items: center;
	display: flex;
	flex-direction: column;
	min-height: 320px;
	justify-content: center;
	text-align: center;
}

.checkin-success i,
.checkin-empty i {
	color: #4ade80;
	font-size: 3rem;
	margin-bottom: 1rem;
}

.checkin-empty i {
	color: #ffb55a;
}

.checkin-success h2,
.checkin-empty h2 {
	color: #fff;
	font-size: 1.4rem;
	font-weight: 900;
}

.checkin-success p,
.checkin-empty p {
	color: #cfcfcf;
	margin: 0;
	max-width: 440px;
}

button.btn-action:disabled {
	cursor: not-allowed;
	opacity: 0.58;
	transform: none;
}

.dataTables_wrapper {
	color: #d0d0d0;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
	color: #d0d0d0 !important;
}

.dataTables_wrapper .dataTables_length select,
.dataTables_wrapper .dataTables_filter input {
	background-color: rgba(22, 22, 22, 0.86);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	color: #fff;
	margin: 0 0.4rem;
	min-height: 38px;
	padding: 0.35rem 0.65rem;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
	border: 1px solid rgba(255, 255, 255, 0.14) !important;
	border-radius: 6px !important;
	color: #d0d0d0 !important;
	margin-left: 0.25rem;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
	background: #ff8a00 !important;
	border-color: #ff8a00 !important;
	color: #fff !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
	background: rgba(255, 138, 0, 0.16) !important;
	border-color: rgba(255, 138, 0, 0.4) !important;
	color: #fff !important;
}

@media (max-width: 991.98px) {
	.user-session-button {
		margin: 8px 16px;
	}

	.pilot-payment-alert {
		align-items: stretch;
		flex-direction: column;
	}

	.pilot-detail-grid {
		grid-template-columns: 1fr;
	}

	.dashboard-hero,
	.dashboard-section-header {
		align-items: stretch;
		flex-direction: column;
	}

	.dashboard-hero-metrics,
	.dashboard-grid,
	.schedule-detail-grid {
		grid-template-columns: 1fr;
	}

	.dashboard-hero-metric {
		text-align: left;
	}

	.dashboard-schedule-item {
		grid-template-columns: 74px minmax(0, 1fr);
	}

	.dashboard-schedule-action {
		display: none;
	}

	.pilot-photo-columns {
		grid-template-columns: 1fr;
	}
}

@media print {
	.qr-print-actions {
		display: none;
	}

	.qr-print-body,
	.qr-print-page {
		background: #fff;
		display: block;
		padding: 0;
	}

	.qr-print-sheet {
		border: none;
		box-shadow: none;
		min-height: auto;
		padding: 0.5in;
		width: 100%;
	}
}

.competition-type-indoor {
	background: rgba(255, 138, 0, 0.18);
	border: 1px solid rgba(255, 138, 0, 0.45);
	color: #ffc078;
}

.competition-type-professional {
	background: rgba(89, 185, 255, 0.16);
	border: 1px solid rgba(89, 185, 255, 0.4);
	color: #8fd0ff;
}

.competition-regenerate-control {
	align-items: center;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	display: flex;
	gap: 0.7rem;
	min-height: 46px;
	padding: 0.65rem 0.85rem;
}

.dashboard-competitions {
	margin-top: 1rem;
}

.dashboard-competition-item .dashboard-schedule-time {
	min-width: 82px;
}

.competition-regenerate-control .form-check-input {
	flex: 0 0 auto;
	margin: 0;
}

.competition-category-pricing-toggle {
	align-items: center;
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 10px;
	color: #d7d7d7;
	display: flex;
	gap: 0.8rem;
	max-width: 520px;
	padding: 0.8rem 1rem;
	text-align: left;
	transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
	width: 100%;
}

.competition-category-pricing-toggle:hover,
.competition-category-pricing-toggle:focus-visible {
	background: rgba(255, 138, 0, 0.08);
	border-color: rgba(255, 138, 0, 0.5);
	outline: none;
}

.competition-category-pricing-check {
	align-items: center;
	background: rgba(0, 0, 0, 0.28);
	border: 2px solid #7f8791;
	border-radius: 4px;
	display: inline-flex;
	flex: 0 0 23px;
	font-size: 0.7rem;
	height: 23px;
	justify-content: center;
}

.competition-category-pricing-check::after {
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	content: "";
	display: none;
	height: 11px;
	transform: rotate(45deg) translate(-1px, -1px);
	width: 6px;
}

.competition-category-pricing-icon {
	align-items: center;
	background: rgba(255, 138, 0, 0.12);
	border-radius: 8px;
	color: #ffad5c;
	display: inline-flex;
	flex: 0 0 38px;
	height: 38px;
	justify-content: center;
}

.competition-category-pricing-toggle > span:last-child {
	display: flex;
	flex-direction: column;
}

.competition-category-pricing-toggle strong {
	color: #f2f2f2;
	font-size: 0.86rem;
	text-transform: uppercase;
}

.competition-category-pricing-toggle small {
	color: #9f9f9f;
	font-size: 0.72rem;
	margin-top: 0.18rem;
}

.competition-category-pricing-toggle.is-selected {
	background: rgba(255, 138, 0, 0.14);
	border-color: rgba(255, 138, 0, 0.68);
	box-shadow: inset 0 -3px 0 #ed7d0b;
}

.competition-category-pricing-toggle.is-selected .competition-category-pricing-check {
	background: #ed7d0b;
	border-color: #ffad5c;
	color: #fff;
}

.competition-category-pricing-toggle.is-selected .competition-category-pricing-check::after {
	display: inline-block;
}

[data-main-registration-price] {
	transition: opacity 0.18s ease;
}

[data-main-registration-price].is-disabled {
	opacity: 0.45;
}

.competition-option-panel,
.competition-radio-panel {
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 1rem;
}

.competition-option-panel h2,
.competition-radio-panel legend {
	color: #fff;
	font-size: 0.95rem;
	font-weight: 800;
	margin: 0;
}

.competition-option-panel p {
	color: #9f9f9f;
	font-size: 0.82rem;
	margin: 0.2rem 0 0.85rem;
}

.competition-option-grid,
.competition-radio-grid {
	display: grid;
	gap: 0.65rem;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.competition-category-price-grid {
	display: grid;
	gap: 0.75rem;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.competition-category-price-item {
	background: rgba(10, 10, 10, 0.25);
	border: 1px solid transparent;
	border-radius: 8px;
	padding: 0.45rem;
}

.competition-category-price-item.has-category-price {
	border-color: rgba(255, 138, 0, 0.3);
}

.competition-category-price-editor {
	border-top: 1px solid rgba(255, 255, 255, 0.09);
	margin-top: 0.55rem;
	padding: 0.65rem 0.35rem 0.25rem;
}

.competition-category-price-editor > label {
	color: #b8b8b8;
	display: block;
	font-size: 0.68rem;
	font-weight: 800;
	margin-bottom: 0.35rem;
	text-transform: uppercase;
}

.competition-option,
.competition-radio-option {
	cursor: pointer;
	margin: 0;
	position: relative;
}

.competition-option input,
.competition-radio-option input {
	opacity: 0;
	pointer-events: none;
	position: absolute;
}

.competition-option span,
.competition-radio-option span {
	align-items: center;
	background: rgba(10, 10, 10, 0.48);
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 6px;
	color: #d7d7d7;
	display: flex;
	font-size: 0.82rem;
	font-weight: 800;
	justify-content: center;
	min-height: 42px;
	padding: 0.5rem 0.7rem;
	text-align: center;
	transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.competition-option input:checked + span,
.competition-radio-option input:checked + span {
	background: rgba(255, 138, 0, 0.17);
	border-color: rgba(255, 138, 0, 0.68);
	color: #ffc078;
}

.competition-option input:focus-visible + span,
.competition-radio-option input:focus-visible + span {
	box-shadow: 0 0 0 0.2rem rgba(255, 138, 0, 0.17);
}

.competition-radio-option span > strong {
	display: block;
}

.competition-radio-option span > small {
	color: #ffbd70;
	display: block;
	font-size: 0.72rem;
	margin-top: 0.15rem;
}

.competition-radio-option .competition-radio-category-content {
	align-items: center;
	flex-direction: column;
	gap: 0.18rem;
}

.competition-radio-option .competition-radio-category-content > small {
	line-height: 1.2;
	margin-top: 0;
}

.competition-options-error,
.competition-radio-error {
	color: #ff8f9f;
	display: none;
	font-size: 0.8rem;
	margin-top: 0.65rem;
}

.options-invalid .competition-options-error,
.radio-invalid .competition-radio-error {
	display: block;
}

.options-invalid .competition-option-panel,
.radio-invalid {
	border-color: rgba(220, 53, 69, 0.68);
}

.competition-detail-grid {
	display: grid;
	gap: 0.85rem;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.competition-detail-options {
	grid-column: span 2;
}

.competition-detail-category-prices {
	grid-column: span 2;
}

.competition-category-price-list {
	display: grid;
	gap: 0.5rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 0.35rem;
}

.competition-category-price-row {
	align-items: center;
	background: rgba(255, 138, 0, 0.08);
	border: 1px solid rgba(255, 138, 0, 0.22);
	border-radius: 7px;
	display: flex;
	gap: 0.75rem;
	justify-content: space-between;
	padding: 0.55rem 0.7rem;
}

.competition-category-price-row strong {
	color: #ededed;
}

.competition-category-price-row b {
	color: #ffbd70;
	white-space: nowrap;
}

.competition-price-by-category {
	background: rgba(255, 138, 0, 0.16);
	border: 1px solid rgba(255, 138, 0, 0.38);
	color: #ffbd70;
}

.competition-option-badge {
	background: rgba(255, 138, 0, 0.16);
	border: 1px solid rgba(255, 138, 0, 0.38);
	color: #ffc078;
	margin: 0.15rem 0.2rem 0.15rem 0;
}

.competition-public-body {
	align-items: flex-start;
	background: #101010;
	padding: 1rem;
}

.competition-public-page {
	margin: 0 auto;
	max-width: 840px;
	width: 100%;
}

.competition-public-header {
	align-items: center;
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
}

.competition-public-icon {
	align-items: center;
	background: rgba(255, 138, 0, 0.16);
	border: 1px solid rgba(255, 138, 0, 0.38);
	border-radius: 50%;
	color: #ffb55a;
	display: flex;
	flex: 0 0 auto;
	font-size: 1.65rem;
	height: 66px;
	justify-content: center;
	width: 66px;
}

.competition-public-header span {
	color: #ffb55a;
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
}

.competition-public-header h1 {
	color: #fff;
	font-size: 1.6rem;
	font-weight: 900;
	margin: 0.1rem 0;
}

.competition-public-header p {
	color: #bdbdbd;
	margin: 0;
}

.competition-public-card {
	background: rgba(22, 22, 22, 0.98);
	border: 1px solid rgba(255, 138, 0, 0.24);
	border-radius: 8px;
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
	padding: 1.25rem;
}

.competition-public-card .form-label {
	color: #d8d8d8;
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.competition-public-card .form-control,
.competition-public-card .form-select {
	background-color: rgba(12, 12, 12, 0.86);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: #fff;
	min-height: 46px;
}

.competition-public-card .form-control:focus,
.competition-public-card .form-select:focus {
	background-color: rgba(12, 12, 12, 0.96);
	border-color: rgba(255, 138, 0, 0.72);
	box-shadow: 0 0 0 0.2rem rgba(255, 138, 0, 0.16);
	color: #fff;
}

.competition-public-summary {
	align-items: center;
	background: rgba(255, 138, 0, 0.11);
	border: 1px solid rgba(255, 138, 0, 0.28);
	border-radius: 8px;
	display: flex;
	justify-content: space-between;
	margin-bottom: 1rem;
	padding: 0.8rem 1rem;
}

.competition-public-summary span {
	color: #c5c5c5;
	font-size: 0.8rem;
	font-weight: 800;
	text-transform: uppercase;
}

.competition-public-summary strong {
	color: #ffbd70;
	font-size: 1.25rem;
}

.competition-radio-panel {
	margin: 0;
}

.competition-radio-panel legend {
	margin-bottom: 0.75rem;
}

.competition-public-actions {
	margin-top: 1.25rem;
}

.competition-term-acceptance {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 1.35rem;
	padding-top: 1.2rem;
}

.competition-term-read-link {
	color: #ffb55a;
	display: inline-flex;
	font-size: 0.88rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	text-decoration: none;
}

.competition-term-read-link:hover,
.competition-term-read-link:focus {
	color: #ffd09a;
	text-decoration: underline;
}

.competition-term-control {
	position: relative;
}

.competition-term-checkbox-input {
	height: 1px;
	left: 1rem;
	opacity: 0;
	position: absolute;
	top: 50%;
	width: 1px;
}

.competition-term-button {
	align-items: center;
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	color: #e7e7e7;
	cursor: pointer;
	display: flex;
	font-size: 0.92rem;
	font-weight: 800;
	gap: 0.7rem;
	margin: 0;
	min-height: 52px;
	padding: 0.72rem 0.9rem;
	transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.competition-term-button:hover {
	background: rgba(255, 138, 0, 0.08);
	border-color: rgba(255, 155, 56, 0.55);
}

.competition-term-checkbox-input:focus-visible + .competition-term-button {
	box-shadow: 0 0 0 0.2rem rgba(255, 138, 0, 0.2);
}

.competition-term-check {
	align-items: center;
	background: rgba(0, 0, 0, 0.34);
	border: 2px solid #8e939a;
	border-radius: 4px;
	color: #fff;
	display: inline-flex;
	flex: 0 0 23px;
	font-size: 0.72rem;
	height: 23px;
	justify-content: center;
}

.competition-term-check i,
.competition-term-thumb {
	display: none;
}

.competition-term-button.is-accepted {
	background: rgba(31, 132, 90, 0.17);
	border-color: rgba(74, 222, 128, 0.56);
	color: #f4fff9;
}

.competition-term-button.is-accepted .competition-term-check {
	background: #1f845a;
	border-color: #58c98f;
}

.competition-term-button.is-accepted .competition-term-check i,
.competition-term-button.is-accepted .competition-term-thumb {
	display: inline-block;
}

.competition-term-thumb {
	font-size: 1.05rem;
	line-height: 1;
}

.competition-term-error {
	color: #ff8585;
	display: none;
	font-size: 0.78rem;
	margin-top: 0.45rem;
}

.competition-term-acceptance.term-invalid .competition-term-button {
	border-color: #dc3545;
}

.competition-term-acceptance.term-invalid .competition-term-error {
	display: block;
}

.competition-submit-button {
	background: #ed7d0b;
	border: 1px solid #ff9b38;
	border-radius: 8px;
	box-shadow: 0 9px 20px rgba(237, 125, 11, 0.2);
	color: #fff;
	font-size: 1rem;
	font-weight: 900;
	padding: 0.85rem 1.2rem;
}

.competition-submit-button:hover,
.competition-submit-button:focus {
	background: #fb8a18;
	border-color: #ffad5c;
	color: #fff;
}

.competition-submit-button:disabled {
	background: #5a5a5a;
	border-color: #707070;
	box-shadow: none;
	color: #c8c8c8;
	cursor: not-allowed;
	opacity: 0.72;
}

.payment-status-banner {
	align-items: center;
	border: 1px solid;
	border-radius: 8px;
	display: flex;
	gap: 0.85rem;
	margin-bottom: 1rem;
	padding: 0.9rem 1rem;
}

.payment-status-banner > i {
	font-size: 1.5rem;
}

.payment-status-banner strong,
.payment-status-banner span {
	display: block;
}

.payment-status-banner strong {
	font-size: 0.82rem;
}

.payment-status-banner span {
	color: #cecece;
	font-size: 0.84rem;
}

.payment-status-banner.is-pending {
	background: rgba(255, 184, 77, 0.11);
	border-color: rgba(255, 184, 77, 0.38);
	color: #ffc66f;
}

.payment-status-banner.is-received {
	background: rgba(74, 158, 255, 0.1);
	border-color: rgba(74, 158, 255, 0.38);
	color: #78b5ff;
}

.payment-status-banner.is-paid {
	background: rgba(74, 222, 128, 0.1);
	border-color: rgba(74, 222, 128, 0.36);
	color: #74e6a0;
}

.payment-information-grid {
	display: grid;
	gap: 0.75rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.payment-information-item {
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 0.85rem;
}

.payment-information-item span,
.payment-information-item strong {
	display: block;
	overflow-wrap: anywhere;
}

.payment-information-item span {
	color: #9e9e9e;
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
}

.payment-information-item strong {
	color: #fff;
	margin-top: 0.2rem;
}

.payment-information-item.payment-value strong {
	color: #ffbd70;
	font-size: 1.2rem;
}

.payment-upload-form {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 1rem;
	padding-top: 1rem;
}

@media (max-width: 767.98px) {
	.competition-detail-grid,
	.payment-information-grid {
		grid-template-columns: 1fr;
	}

	.competition-detail-options {
		grid-column: auto;
	}

	.competition-detail-category-prices {
		grid-column: auto;
	}

	.competition-category-price-list {
		grid-template-columns: 1fr;
	}

	.competition-public-header {
		align-items: flex-start;
	}

	.competition-public-header h1 {
		font-size: 1.25rem;
	}

	.competition-public-summary {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.25rem;
	}
}
.competition-entry-group-row td {
	background: rgba(255, 138, 0, 0.12) !important;
	border-bottom: 1px solid rgba(255, 138, 0, 0.3) !important;
	border-top: 1px solid rgba(255, 138, 0, 0.3) !important;
	padding: 0.7rem 0.9rem !important;
}

.competition-entry-group-heading {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
}

.competition-entry-group-heading > div {
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem 0.8rem;
}

.competition-entry-group-heading strong {
	color: #ffb45a;
	font-size: 0.85rem;
	text-transform: uppercase;
}

.competition-entry-group-heading > div > span {
	color: #d7d7d7;
	font-size: 0.78rem;
	font-weight: 700;
}

.competition-entry-group-total {
	background: rgba(255, 138, 0, 0.16);
	border: 1px solid rgba(255, 138, 0, 0.32);
	border-radius: 999px;
	color: #ffc47d;
	font-size: 0.7rem;
	font-weight: 800;
	padding: 0.25rem 0.55rem;
	white-space: nowrap;
}
.competition-entry-select-column {
	width: 48px;
}

.competition-entry-select-column .form-check-input {
	border-color: rgba(255, 255, 255, 0.35);
	cursor: pointer;
	float: none;
	margin: 0;
	vertical-align: middle;
}

#competitionReportForm {
	margin: 0;
}

.competition-report-button-group {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.competition-report-button-group .btn {
	border-radius: 0;
	box-shadow: none;
	white-space: nowrap;
}

.competition-report-button-group .btn:first-child {
	border-radius: 8px 0 0 8px;
}

.competition-report-button-group .btn:last-child {
	border-radius: 0 8px 8px 0;
}

.report-excel-button {
	background: linear-gradient(135deg, #249f5b 0%, #14733d 100%);
	border: 0;
	color: #fff;
	font-weight: 700;
	padding: 0.65rem 1rem;
}

.report-excel-button:hover,
.report-excel-button:focus-visible {
	background: linear-gradient(135deg, #2db96b 0%, #188249 100%);
	color: #fff;
	transform: translateY(-1px);
}

#competitionEntriesTable .competition-entry-row {
	transition: background-color 0.16s ease;
}

#competitionEntriesTable tbody tr:hover {
	transform: none;
}

#competitionEntriesTable .competition-entry-row:hover > td {
	background: rgba(255, 255, 255, 0.075) !important;
}

#competitionEntriesTable .competition-entry-actions .btn-action {
	font-size: 0.72rem;
	gap: 0.35rem;
	line-height: 1;
	min-height: 31px;
	padding: 0.42rem 0.58rem;
}

#competitionEntriesTable .competition-entry-actions.has-delete-action {
	justify-content: flex-start;
	width: 100%;
}

#competitionEntriesTable .competition-delete-entry-form {
	margin-left: auto;
}

#competitionEntriesTable .competition-delete-entry-button {
	font-size: 0.72rem;
	padding: 0.42rem 0.58rem;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
	#competitionEntriesTable {
		table-layout: fixed;
		width: 100% !important;
	}

	#competitionEntriesTable .competition-entry-compact-hide {
		display: none !important;
	}

	#competitionEntriesTable thead th,
	#competitionEntriesTable tbody td {
		font-size: 0.7rem;
		overflow-wrap: anywhere;
		padding: 0.55rem 0.4rem;
	}

	#competitionEntriesTable .competition-entry-select-column {
		width: 38px;
	}

	#competitionEntriesTable .competition-entry-actions-column {
		width: 36%;
	}

	#competitionEntriesTable .competition-entry-actions {
		gap: 0.28rem;
		width: 100%;
	}

	#competitionEntriesTable .competition-entry-actions .btn-action span {
		display: none;
	}

	#competitionEntriesTable .competition-entry-actions .btn-action {
		font-size: 0.72rem;
		min-height: 28px;
		padding: 0.38rem 0.48rem;
	}

	#competitionEntriesTable .competition-payment-method-label {
		font-size: 0.58rem;
	}

	#competitionEntriesTable .competition-payment-method-group button {
		font-size: 0.56rem;
		padding: 0.38rem 0.42rem;
	}
}

@media (max-width: 767.98px) {
	#competitionReportForm,
	.competition-report-button-group {
		width: 100%;
	}

	.competition-report-button-group {
		display: flex;
	}

	.competition-report-button-group .btn {
		flex: 1 1 0;
		font-size: 0.76rem;
		padding: 0.62rem 0.55rem;
		width: auto;
	}

	#competitionEntriesTable,
	#competitionEntriesTable tbody {
		display: block;
		width: 100% !important;
	}

	#competitionEntriesTable thead {
		display: none;
	}

	#competitionEntriesTable .competition-entry-group-row {
		display: block;
		margin-top: 0.8rem;
	}

	#competitionEntriesTable .competition-entry-group-row td {
		display: block;
		width: 100%;
	}

	#competitionEntriesTable .competition-entry-row {
		background: rgba(35, 35, 35, 0.72);
		border: 1px solid rgba(255, 255, 255, 0.09);
		border-radius: 8px;
		display: grid;
		gap: 0;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 0.65rem;
		overflow: hidden;
		width: 100%;
	}

	#competitionEntriesTable .competition-entry-row > td {
		align-items: flex-start;
		background: transparent;
		border-bottom: 1px solid rgba(255, 255, 255, 0.055);
		display: flex !important;
		flex-direction: column;
		font-size: 0.76rem;
		gap: 0.22rem;
		min-width: 0;
		overflow-wrap: anywhere;
		padding: 0.62rem 0.7rem;
		text-align: left !important;
		width: auto;
	}

	#competitionEntriesTable .competition-entry-row > td::before {
		color: #858d98;
		content: attr(data-label);
		font-size: 0.57rem;
		font-weight: 800;
		letter-spacing: 0.04em;
		text-transform: uppercase;
	}

	#competitionEntriesTable .competition-entry-name,
	#competitionEntriesTable .competition-entry-participation,
	#competitionEntriesTable .competition-entry-payment,
	#competitionEntriesTable .competition-entry-actions-column {
		grid-column: 1 / -1;
	}

	#competitionEntriesTable .competition-entry-actions-column {
		align-items: stretch;
	}

	#competitionEntriesTable .competition-entry-actions {
		align-items: center;
		justify-content: flex-start;
		width: 100%;
	}

	#competitionEntriesTable .competition-payment-method-form {
		align-items: flex-start;
		width: 100%;
	}

	#competitionEntriesTable .competition-payment-method-group {
		justify-content: flex-start;
		width: 100%;
	}

	#competitionEntriesTable .competition-payment-method-group button {
		flex: 1 1 auto;
		font-size: 0.59rem;
		padding: 0.45rem 0.35rem;
	}

	#competitionEntriesTable .competition-entry-actions .btn-action {
		font-size: 0.68rem;
		min-height: 30px;
		padding: 0.42rem 0.52rem;
	}
}
