/* JuryHQ Frontend Styles */

:root {
	--jhq-primary: #059669;
	--jhq-primary-dark: #047857;
	--jhq-secondary: #64748b;
	--jhq-success: #10b981;
	--jhq-warning: #f59e0b;
	--jhq-danger: #ef4444;
	--jhq-bg: #f8fafc;
	--jhq-card-bg: #ffffff;
	--jhq-text: #1e293b;
	--jhq-text-light: #64748b;
	--jhq-border: #e2e8f0;
	--jhq-radius: 12px;
}

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

body {
	font-family:
		-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
		sans-serif;
	background: var(--jhq-bg);
	color: var(--jhq-text);
	line-height: 1.6;
}

/* Login Page */
.jhq-login-container {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.jhq-login-card {
	background: var(--jhq-card-bg);
	border-radius: var(--jhq-radius);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	padding: 48px 40px;
	width: 100%;
	max-width: 420px;
	animation: jhq-fadeIn 0.3s ease;
}

.jhq-login-header {
	text-align: center;
	margin-bottom: 32px;
}

.jhq-login-header h1 {
	font-size: 32px;
	font-weight: 800;
	background: linear-gradient(135deg, #059669, #047857);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 4px;
}

.jhq-login-header p {
	color: var(--jhq-text-light);
	font-size: 15px;
}

.jhq-login-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

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

.jhq-field label {
	font-size: 14px;
	font-weight: 600;
	color: var(--jhq-text);
}

.jhq-field input[type="text"],
.jhq-field input[type="password"],
.jhq-field input[type="number"] {
	padding: 12px 16px;
	border: 2px solid var(--jhq-border);
	border-radius: 8px;
	font-size: 15px;
	transition: border-color 0.2s;
	outline: none;
	background: var(--jhq-bg);
}

.jhq-field input:focus {
	border-color: var(--jhq-primary);
	background: white;
}

.jhq-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.2s;
	text-decoration: none;
	gap: 8px;
}

.jhq-btn-primary {
	background: var(--jhq-primary);
	color: white;
}

.jhq-btn-primary:hover {
	background: var(--jhq-primary-dark);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(5, 150, 105, 0.4);
}

.jhq-btn-secondary {
	background: var(--jhq-secondary);
	color: white;
}

.jhq-btn-secondary:hover {
	background: #475569;
}

.jhq-btn-outline {
	background: transparent;
	border: 2px solid var(--jhq-border);
	color: var(--jhq-text);
}

.jhq-btn-outline:hover {
	border-color: var(--jhq-primary);
	color: var(--jhq-primary);
}

.jhq-btn-block {
	width: 100%;
}

.jhq-btn-danger {
	background: var(--jhq-danger);
	color: white;
}

.jhq-btn-sm {
	padding: 8px 16px;
	font-size: 13px;
}

/* Alerts */
.jhq-alert {
	padding: 12px 16px;
	border-radius: 8px;
	margin-bottom: 16px;
	font-size: 14px;
}

.jhq-alert-error {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: var(--jhq-danger);
}

.jhq-alert-success {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	color: #16a34a;
}

/* Dashboard */
.jhq-dashboard {
	max-width: 1200px;
	margin: 0 auto;
	padding: 24px;
}

.jhq-dashboard-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 32px;
	flex-wrap: wrap;
	gap: 16px;
}

.jhq-dashboard-header h1 {
	font-size: 28px;
	font-weight: 800;
}

.jhq-judge-info {
	display: flex;
	align-items: center;
	gap: 16px;
}

.jhq-judge-info span {
	color: var(--jhq-text-light);
}

/* Tabs */
.jhq-tabs {
	display: flex;
	gap: 4px;
	margin-bottom: 24px;
	background: white;
	border-radius: var(--jhq-radius);
	padding: 4px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.jhq-tab {
	flex: 1;
	padding: 12px 24px;
	border: none;
	background: transparent;
	color: var(--jhq-text-light);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	border-radius: 8px;
	transition: all 0.2s;
}

.jhq-tab.active {
	background: var(--jhq-primary);
	color: white;
}

.jhq-tab:hover:not(.active) {
	background: var(--jhq-bg);
}

.jhq-tab-content {
	display: none;
}

.jhq-tab-content.active {
	display: block;
	animation: jhq-fadeIn 0.3s ease;
}

/* Category Section */
.jhq-category {
	margin-bottom: 32px;
}

.jhq-category h2 {
	font-size: 20px;
	font-weight: 700;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--jhq-border);
	margin-bottom: 16px;
	color: var(--jhq-primary);
}

/* Team Card */
.jhq-team-card {
	background: white;
	border-radius: var(--jhq-radius);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	padding: 24px;
	margin-bottom: 16px;
	transition: all 0.2s;
	border: 1px solid var(--jhq-border);
}

.jhq-team-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.jhq-team-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
}

.jhq-team-order {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--jhq-primary);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
	flex-shrink: 0;
}

.jhq-team-logo {
	width: 56px;
	height: 56px;
	border-radius: 8px;
	object-fit: cover;
	flex-shrink: 0;
	background: var(--jhq-bg);
}

.jhq-team-info {
	flex: 1;
	min-width: 0;
}

.jhq-team-info h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 4px;
}

.jhq-team-info p {
	color: var(--jhq-text-light);
	font-size: 14px;
	line-height: 1.5;
}

/* Criteria Groups */
.jhq-criteria-group {
	margin-bottom: 16px;
}

.jhq-criteria-group:last-child {
	margin-bottom: 0;
}

.jhq-criteria-group-header {
	margin-bottom: 8px;
	padding-bottom: 6px;
	border-bottom: 1px dashed var(--jhq-border);
}

.jhq-criteria-group-header h4 {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--jhq-primary);
}

.jhq-criteria-group-notes {
	font-style: italic;
	color: #64748b;
	font-size: 0.85em;
	margin: 4px 0 0;
}

.jhq-team-comment {
	width: 100%;
	margin-top: 8px;
	border: 1px solid #cbd5e1;
	border-radius: 4px;
	padding: 6px 8px;
	font-size: 0.85em;
	font-family: inherit;
	resize: vertical;
	box-sizing: border-box;
}

.ms-comment {
	font-size: 0.85em;
	color: #475569;
	font-style: italic;
	padding: 4px 0 4px 16px;
}

.jhq-criterion-description {
	font-size: 0.82em;
	color: #94a3b8;
	font-style: italic;
	margin: 2px 0 4px;
	line-height: 1.3;
	text-align: left;
}

.jhq-cs-row {
	margin: 2px 0;
	line-height: 1.4;
}

.jhq-cs-comment {
	display: block;
	font-size: 0.85em;
	color: #475569;
	font-style: italic;
	padding-left: 8px;
}

.jhq-criteria-group-label {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--jhq-primary);
	margin-top: 4px;
	margin-bottom: 2px;
}

/* Scores */
.jhq-scores {
	display: grid;
	gap: 12px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--jhq-border);
}

.jhq-score-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.jhq-score-label-wrap {
	flex: 1;
	min-width: 0;
}

.jhq-score-row label {
	font-size: 14px;
	font-weight: 500;
	color: var(--jhq-text);
}

.jhq-score-row input[type="number"] {
	width: 80px;
	padding: 8px 12px;
	border: 2px solid var(--jhq-border);
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	outline: none;
	transition: border-color 0.2s;
}

.jhq-score-row input[type="number"]:focus {
	border-color: var(--jhq-primary);
}

.jhq-score-row input[type="number"]::-webkit-inner-spin-button {
	opacity: 1;
}

.jhq-total-score {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 12px;
	margin-top: 12px;
	border-top: 2px solid var(--jhq-primary);
	font-weight: 700;
	font-size: 16px;
}

.jhq-total-score span:last-child {
	color: var(--jhq-primary);
	font-size: 20px;
}

.jhq-team-actions {
	margin-top: 16px;
	display: flex;
	justify-content: flex-end;
}

/* Modal */
.jhq-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	align-items: center;
	justify-content: center;
}

.jhq-modal.active {
	display: flex !important;
}

.jhq-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
}

.jhq-modal-content {
	position: relative;
	background: white;
	border-radius: var(--jhq-radius);
	padding: 32px;
	max-width: 480px;
	width: 100%;
	margin: 24px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
	animation: jhq-fadeIn 0.2s ease;
}

.jhq-modal-content h2 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 8px;
}

.jhq-modal-content p {
	color: var(--jhq-text-light);
	margin-bottom: 20px;
}

.jhq-modal-actions {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
}

#jhq-modal-score-summary {
	background: var(--jhq-bg);
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 20px;
}

#jhq-modal-score-summary .ms-row {
	display: flex;
	justify-content: space-between;
	padding: 4px 0;
	font-size: 14px;
}

#jhq-modal-score-summary .ms-row.ms-total {
	font-weight: 700;
	border-top: 1px solid var(--jhq-border);
	padding-top: 8px;
	margin-top: 8px;
}

/* History / Juryd team card */
.jhq-judged-card {
	background: white;
	border-radius: var(--jhq-radius);
	padding: 20px;
	margin-bottom: 12px;
	border: 1px solid var(--jhq-border);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.jhq-judged-left {
	display: flex;
	align-items: center;
	gap: 16px;
}

.jhq-judged-info h4 {
	font-size: 16px;
	font-weight: 600;
}

.jhq-judged-info .jhq-criteria-breakdown {
	font-size: 13px;
	color: var(--jhq-text-light);
	margin-top: 4px;
}

.jhq-judged-total {
	font-size: 24px;
	font-weight: 800;
	color: var(--jhq-success);
}

/* Results Page */
.jhq-results {
	max-width: 1200px;
	margin: 0 auto;
	padding: 24px;
}

.jhq-results-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 32px;
}

.jhq-results-header h1 {
	font-size: 32px;
	font-weight: 800;
}

.jhq-results-category {
	margin-bottom: 48px;
}

.jhq-results-category h2 {
	font-size: 24px;
	font-weight: 700;
	color: var(--jhq-primary);
	margin-bottom: 24px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--jhq-border);
}

.jhq-chart-wrapper {
	background: white;
	border-radius: var(--jhq-radius);
	padding: 24px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	border: 1px solid var(--jhq-border);
	margin-bottom: 24px;
}

.jhq-podium {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 16px;
	margin-bottom: 32px;
	padding: 24px;
}

.jhq-podium-item {
	text-align: center;
	padding: 20px;
	border-radius: var(--jhq-radius);
	min-width: 160px;
}

.jhq-podium-item.jhq-gold {
	order: 2;
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
	color: white;
	transform: scale(1.1);
	box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.jhq-podium-item.jhq-silver {
	order: 1;
	background: linear-gradient(135deg, #e2e8f0, #94a3b8);
	color: white;
}

.jhq-podium-item.jhq-bronze {
	order: 3;
	background: linear-gradient(135deg, #fed7aa, #d97706);
	color: white;
}

.jhq-podium-rank {
	font-size: 36px;
	font-weight: 800;
	margin-bottom: 4px;
}

.jhq-podium-name {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 4px;
}

.jhq-podium-score {
	font-size: 20px;
	font-weight: 700;
}

/* Notification */
.jhq-notification {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%) translateY(-80px);
	background: var(--jhq-primary);
	color: white;
	padding: 12px 24px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3);
	z-index: 10000;
	transition: transform 0.3s ease;
	pointer-events: none;
}

.jhq-notification.jhq-notification-show {
	transform: translateX(-50%) translateY(0);
}

/* Loading */
.jhq-loading {
	text-align: center;
	padding: 48px;
	color: var(--jhq-text-light);
	font-size: 16px;
}

.jhq-loading::after {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-left: 8px;
	border: 2px solid var(--jhq-border);
	border-top-color: var(--jhq-primary);
	border-radius: 50%;
	animation: jhq-spin 0.6s linear infinite;
	vertical-align: middle;
}

/* Error */
.jhq-error {
	text-align: center;
	padding: 48px;
	color: var(--jhq-danger);
	font-size: 16px;
}

/* Animations */
@keyframes jhq-fadeIn {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

/* Responsive */
@media (max-width: 768px) {
	.jhq-dashboard-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.jhq-team-header {
		flex-wrap: wrap;
	}

	.jhq-team-logo {
		width: 40px;
		height: 40px;
	}

	.jhq-score-row {
		flex-wrap: wrap;
	}

	.jhq-score-row input[type="number"] {
		width: 70px;
	}

	.jhq-podium {
		flex-direction: column;
		align-items: center;
	}

	.jhq-podium-item.jhq-gold {
		transform: none;
	}

	.jhq-judged-card {
		flex-direction: column;
		align-items: flex-start;
	}

	.jhq-login-card {
		padding: 32px 24px;
	}
}

/* Hall of Fame */
.jhq-hall-of-fame {
	max-width: 1200px;
	margin: 0 auto;
	padding: 24px;
}

.jhq-hof-header {
	text-align: center;
	margin-bottom: 40px;
}

.jhq-hof-header h1 {
	font-size: 36px;
	font-weight: 800;
	background: linear-gradient(135deg, #f59e0b, #d97706);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 8px;
}

.jhq-hof-subtitle {
	color: var(--jhq-text-light);
	font-size: 16px;
}

.jhq-hof-controls {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 32px;
	padding: 16px;
	background: white;
	border-radius: var(--jhq-radius);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	border: 1px solid var(--jhq-border);
}

.jhq-hof-controls label {
	font-weight: 600;
	font-size: 14px;
	white-space: nowrap;
}

.jhq-hof-controls select {
	padding: 8px 12px;
	border: 2px solid var(--jhq-border);
	border-radius: 8px;
	font-size: 14px;
	flex: 1;
	outline: none;
	background: white;
}

.jhq-hof-controls select:focus {
	border-color: var(--jhq-primary);
}

.jhq-hof-competition {
	margin-bottom: 48px;
}

.jhq-hof-competition h2 {
	font-size: 28px;
	font-weight: 700;
	color: var(--jhq-primary);
	padding-bottom: 12px;
	border-bottom: 3px solid var(--jhq-primary);
	margin-bottom: 24px;
}

.jhq-hof-team {
	background: white;
	border-radius: var(--jhq-radius);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	border: 1px solid var(--jhq-border);
	padding: 24px;
	margin-bottom: 20px;
}

.jhq-hof-team-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--jhq-border);
}

.jhq-hof-team-logo {
	width: 64px;
	height: 64px;
	border-radius: 12px;
	object-fit: cover;
	flex-shrink: 0;
}

.jhq-hof-team-info h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 4px;
}

.jhq-hof-organisation {
	color: var(--jhq-text-light);
	font-size: 14px;
}

.jhq-hof-members {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 16px;
}

.jhq-hof-member {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	background: var(--jhq-bg);
	border-radius: 8px;
	transition: box-shadow 0.2s;
}

.jhq-hof-member:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.jhq-hof-member-photo {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.jhq-hof-member-placeholder {
	background: linear-gradient(
		135deg,
		var(--jhq-primary),
		var(--jhq-primary-dark)
	);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 18px;
}

.jhq-hof-member-info h4 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 2px;
}

.jhq-hof-member-role {
	font-size: 12px;
	color: var(--jhq-text-light);
}

.jhq-hof-empty {
	text-align: center;
	padding: 64px 24px;
	color: var(--jhq-text-light);
	font-size: 16px;
}

/* Judge Progress */
.jhq-progress {
	max-width: 900px;
	margin: 0 auto;
	padding: 24px;
}

.jhq-progress-header {
	text-align: center;
	margin-bottom: 40px;
}

.jhq-progress-header h1 {
	font-size: 32px;
	font-weight: 800;
	margin-bottom: 4px;
}

.jhq-progress-subtitle {
	color: var(--jhq-text-light);
	font-size: 15px;
	margin-bottom: 24px;
}

.jhq-progress-summary {
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
	background: var(--jhq-card-bg);
	border: 1px solid var(--jhq-border);
	border-radius: 12px;
	padding: 16px 28px;
}

.jhq-progress-count {
	font-size: 36px;
	font-weight: 800;
	color: var(--jhq-primary);
	line-height: 1;
}

.jhq-progress-label {
	font-size: 14px;
	color: var(--jhq-text-light);
}

.jhq-progress-teams {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.jhq-progress-team {
	background: var(--jhq-card-bg);
	border: 1px solid var(--jhq-border);
	border-radius: var(--jhq-radius);
	padding: 20px 24px;
	transition: box-shadow 0.2s;
}

.jhq-progress-team:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.jhq-progress-team-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 12px;
}

.jhq-progress-team-order {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--jhq-primary);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
	flex-shrink: 0;
}

.jhq-progress-team-logo {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	object-fit: cover;
	flex-shrink: 0;
	background: var(--jhq-bg);
}

.jhq-progress-team-logo-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
	color: var(--jhq-text-light);
}

.jhq-progress-team-info {
	flex: 1;
	min-width: 0;
}

.jhq-progress-team-info h3 {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 2px;
}

.jhq-progress-organisation {
	font-size: 13px;
	color: var(--jhq-text-light);
}

.jhq-progress-team-status {
	display: flex;
	align-items: baseline;
	gap: 2px;
	flex-shrink: 0;
}

.jhq-progress-number {
	font-size: 24px;
	font-weight: 800;
	color: var(--jhq-primary);
	line-height: 1;
}

.jhq-progress-of {
	font-size: 14px;
	color: var(--jhq-text-light);
}

.jhq-progress-bar-track {
	height: 8px;
	background: var(--jhq-bg);
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 16px;
}

.jhq-progress-bar-fill {
	height: 100%;
	border-radius: 4px;
	transition: width 0.5s ease;
	min-width: 0;
}

.jhq-bar-empty {
	background: var(--jhq-border);
}

.jhq-bar-partial {
	background: var(--jhq-primary);
}

.jhq-bar-complete {
	background: var(--jhq-success);
}

.jhq-progress-members {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.jhq-progress-member {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	background: var(--jhq-bg);
	border-radius: 8px;
	font-size: 13px;
}

.jhq-progress-member-photo {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.jhq-progress-member-placeholder {
	background: var(--jhq-primary);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
}

.jhq-progress-member-name {
	font-weight: 600;
	color: var(--jhq-text);
}

.jhq-progress-member-role {
	color: var(--jhq-text-light);
	font-size: 12px;
}

.jhq-progress-empty {
	text-align: center;
	padding: 64px 24px;
	color: var(--jhq-text-light);
	font-size: 16px;
}

@media (max-width: 480px) {
	.jhq-tabs {
		flex-direction: column;
	}

	.jhq-modal-content {
		padding: 24px;
		margin: 16px;
	}

	.jhq-hof-members {
		grid-template-columns: 1fr;
	}

	.jhq-hof-controls {
		flex-direction: column;
		align-items: stretch;
	}
}
