/* _content/ClubTournamentsBlazorApp/Components/Account/Pages/ConfirmEmail.razor.rz.scp.css */
.login-page-background[b-0kly5u89ow] {
  background: url('/images/slider_ct.png') center center / cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
  position: relative;
}

.login-page-background[b-0kly5u89ow]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.login-container[b-0kly5u89ow] {
  position: relative;
  z-index: 1;
  max-width: 500px;
  width: 100%;
  margin: auto;
}

.card[b-0kly5u89ow] {
  overflow: hidden;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  background: white;
}

.card-body[b-0kly5u89ow] {
  padding: 3rem !important;
}

.text-center img[b-0kly5u89ow] {
  transition: transform 0.3s ease;
}

.text-center img:hover[b-0kly5u89ow] {
  transform: scale(1.05);
}

/* Success state styling */
.text-success[b-0kly5u89ow] {
  color: #1DD1A1 !important;
  animation: scaleIn-b-0kly5u89ow 0.5s ease-out;
}

.text-danger[b-0kly5u89ow] {
  color: #dc3545 !important;
  animation: scaleIn-b-0kly5u89ow 0.5s ease-out;
}

@keyframes scaleIn-b-0kly5u89ow {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

h3[b-0kly5u89ow] {
  color: #333;
  font-weight: 600;
}

.text-muted[b-0kly5u89ow] {
  color: #6c757d !important;
  line-height: 1.6;
}

/* Button styling */
.btn-success[b-0kly5u89ow] {
  background: linear-gradient(135deg, #01d099 0%, #01d099 100%);
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(29, 209, 161, 0.3);
  color: white;
  text-decoration: none;
  display: inline-block;
}

.btn-success:hover[b-0kly5u89ow] {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 209, 161, 0.4);
  background: linear-gradient(135deg, #00b882 0%, #00b882 100%);
  color: white;
}

.btn-secondary[b-0kly5u89ow] {
  background: #6c757d;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
  color: white;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover[b-0kly5u89ow] {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
  background: #5a6268;
  color: white;
}

/* Alert styling */
.alert-danger[b-0kly5u89ow] {
  background-color: #f8d7da;
  border: 1px solid #f5c2c7;
  border-radius: 0.5rem;
  color: #842029;
  padding: 1rem;
  margin: 1rem 0;
}

/* Spinner styling */
.spinner-border[b-0kly5u89ow] {
  width: 3rem;
  height: 3rem;
  border-width: 0.3rem;
}

.spinner-border.text-success[b-0kly5u89ow] {
  border-color: rgba(29, 209, 161, 0.3);
  border-right-color: #1DD1A1;
}

/* Footer styling */
footer[b-0kly5u89ow] {
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  font-size: 0.875rem;
}

/* Icon animations */
.bi-check-circle[b-0kly5u89ow],
.bi-exclamation-triangle[b-0kly5u89ow] {
  animation: fadeInScale-b-0kly5u89ow 0.6s ease-out;
}

@keyframes fadeInScale-b-0kly5u89ow {
  0% {
    transform: scale(0) rotate(-45deg);
    opacity: 0;
  }
  60% {
    transform: scale(1.15) rotate(5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 575.98px) {
  .login-page-background[b-0kly5u89ow] {
    padding: 0.5rem;
  }

  .card-body[b-0kly5u89ow] {
    padding: 2rem 1.5rem !important;
  }

  h3[b-0kly5u89ow] {
    font-size: 1.5rem;
  }

  .bi-check-circle[b-0kly5u89ow],
  .bi-exclamation-triangle[b-0kly5u89ow] {
    font-size: 3rem !important;
  }

  .btn-success[b-0kly5u89ow],
  .btn-secondary[b-0kly5u89ow] {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
  }

  .text-center img[b-0kly5u89ow] {
    max-width: 120px;
  }
}

@media (max-width: 375px) {
  .card-body[b-0kly5u89ow] {
    padding: 1.5rem 1rem !important;
  }

  .btn-success[b-0kly5u89ow],
  .btn-secondary[b-0kly5u89ow] {
    padding: 0.7rem 1.25rem;
    font-size: 0.9rem;
  }
}
/* _content/ClubTournamentsBlazorApp/Components/Account/Pages/Login.razor.rz.scp.css */
.login-page-background[b-tu5xnwrg75] {
  background: url('/images/slider_ct.png') center center / cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
  position: relative;
}

.login-page-background[b-tu5xnwrg75]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.login-container[b-tu5xnwrg75] {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  width: 100%;
  margin: auto;
}

.card[b-tu5xnwrg75] {
  overflow: hidden;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.welcome-panel[b-tu5xnwrg75] {
  color: white;
  padding: 3rem 2rem;
}

.welcome-panel .lead[b-tu5xnwrg75] {
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.6;
}

.form-control[b-tu5xnwrg75] {
  border-radius: 0.5rem;
  border: 1px solid #e0e0e0;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus[b-tu5xnwrg75] {
  border-color: #1DD1A1;
  box-shadow: 0 0 0 0.2rem rgba(29, 209, 161, 0.25);
}

.form-row-inline[b-tu5xnwrg75] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label-inline[b-tu5xnwrg75] {
  font-weight: 500;
  color: #333;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.form-input-inline[b-tu5xnwrg75] {
  flex: 1;
}

.btn-success[b-tu5xnwrg75] {
  background: linear-gradient(135deg, #01d099 0%, #01d099 100%);
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(29, 209, 161, 0.3);
}

  .btn-success:hover[b-tu5xnwrg75] {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(29, 209, 161, 0.4);
    background: linear-gradient(135deg, #01d099 0%, #01d099 100%);
  }

.validation-message[b-tu5xnwrg75] {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

.small[b-tu5xnwrg75] {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.small:hover[b-tu5xnwrg75] {
  color: #1DD1A1;
  text-decoration: none;
}

footer[b-tu5xnwrg75] {
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Checkbox styling */
.form-check[b-tu5xnwrg75] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-check-input[b-tu5xnwrg75] {
  width: 1.2rem;
  height: 1.2rem;
  cursor: pointer;
}

.form-check-input:checked[b-tu5xnwrg75] {
  background-color: #1DD1A1;
  border-color: #1DD1A1;
}

.form-check-label[b-tu5xnwrg75] {
  cursor: pointer;
  margin-bottom: 0;
  user-select: none;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .welcome-panel[b-tu5xnwrg75] {
    border-radius: 0.5rem 0.5rem 0 0 !important;
    padding: 2rem 1.5rem;
  }

  .card-body[b-tu5xnwrg75] {
    padding: 2rem 1.5rem !important;
  }
}

@media (max-width: 575.98px) {
  .login-page-background[b-tu5xnwrg75] {
    padding: 0.5rem;
  }

  .card-body[b-tu5xnwrg75] {
    padding: 1.5rem 1rem !important;
  }

  .btn-success[b-tu5xnwrg75] {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  h3[b-tu5xnwrg75] {
    font-size: 1.5rem;
  }

  .welcome-panel img[b-tu5xnwrg75] {
    max-width: 140px;
  }

  .d-flex.justify-content-between[b-tu5xnwrg75] {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch !important;
  }

  .d-flex.justify-content-between .btn-success[b-tu5xnwrg75] {
    width: 100%;
  }

  .d-flex.justify-content-between .small[b-tu5xnwrg75] {
    text-align: center;
  }
}

/* _content/ClubTournamentsBlazorApp/Components/Account/Pages/PaymentProcessing.razor.rz.scp.css */
.login-page-background[b-aaeea9kvtn] {
	background: url('/images/slider_ct.png') center center / cover no-repeat;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	overflow-y: auto;
	position: relative;
}

	.login-page-background[b-aaeea9kvtn]::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(0, 0, 0, 0.3);
		z-index: 0;
	}

.login-container[b-aaeea9kvtn] {
	position: relative;
	z-index: 1;
	max-width: 1000px;
	width: 100%;
	margin: auto;
}

.card[b-aaeea9kvtn] {
	overflow: hidden;
	border: none;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.welcome-panel[b-aaeea9kvtn] {
	color: white;
	padding: 3rem 2rem;
}

	.welcome-panel .lead[b-aaeea9kvtn] {
		font-size: 1.1rem;
		opacity: 0.95;
		line-height: 1.6;
	}

.form-control[b-aaeea9kvtn] {
	border-radius: 0.5rem;
	border: 1px solid #e0e0e0;
	padding: 0.75rem 1rem;
	transition: all 0.3s ease;
}

	.form-control:focus[b-aaeea9kvtn] {
		border-color: #1DD1A1;
		box-shadow: 0 0 0 0.2rem rgba(29, 209, 161, 0.25);
	}

.form-row-inline[b-aaeea9kvtn] {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-label-inline[b-aaeea9kvtn] {
	font-weight: 500;
	color: #333;
	margin-bottom: 0;
	font-size: 0.95rem;
}

.form-input-inline[b-aaeea9kvtn] {
	flex: 1;
}

.btn-success[b-aaeea9kvtn] {
	background: linear-gradient(135deg, #01d099 0%, #01d099 100%);
	border: none;
	border-radius: 0.5rem;
	padding: 0.75rem 2rem;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(29, 209, 161, 0.3);
}

	.btn-success:hover[b-aaeea9kvtn] {
		transform: translateY(-1px);
		box-shadow: 0 6px 20px rgba(29, 209, 161, 0.4);
		background: linear-gradient(135deg, #01d099 0%, #01d099 100%);
	}

.validation-message[b-aaeea9kvtn] {
	color: #dc3545;
	font-size: 0.875rem;
	margin-top: 0.25rem;
	display: block;
}

.small[b-aaeea9kvtn] {
	color: #6c757d;
	text-decoration: none;
	transition: color 0.3s ease;
}

	.small:hover[b-aaeea9kvtn] {
		color: #1DD1A1;
		text-decoration: none;
	}

footer[b-aaeea9kvtn] {
	color: rgba(255, 255, 255, 0.8);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Checkbox styling */
.form-check[b-aaeea9kvtn] {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.form-check-input[b-aaeea9kvtn] {
	width: 1.2rem;
	height: 1.2rem;
	cursor: pointer;
}

	.form-check-input:checked[b-aaeea9kvtn] {
		background-color: #1DD1A1;
		border-color: #1DD1A1;
	}

.form-check-label[b-aaeea9kvtn] {
	cursor: pointer;
	margin-bottom: 0;
	user-select: none;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
	.welcome-panel[b-aaeea9kvtn] {
		border-radius: 0.5rem 0.5rem 0 0 !important;
		padding: 2rem 1.5rem;
	}

	.card-body[b-aaeea9kvtn] {
		padding: 2rem 1.5rem !important;
	}
}

@media (max-width: 575.98px) {
	.login-page-background[b-aaeea9kvtn] {
		padding: 0.5rem;
	}

	.card-body[b-aaeea9kvtn] {
		padding: 1.5rem 1rem !important;
	}

	.btn-success[b-aaeea9kvtn] {
		padding: 0.75rem 1.5rem;
		font-size: 0.95rem;
	}

	h3[b-aaeea9kvtn] {
		font-size: 1.5rem;
	}

	.welcome-panel img[b-aaeea9kvtn] {
		max-width: 140px;
	}

	.d-flex.justify-content-between[b-aaeea9kvtn] {
		flex-direction: column;
		gap: 1rem;
		align-items: stretch !important;
	}

		.d-flex.justify-content-between .btn-success[b-aaeea9kvtn] {
			width: 100%;
		}

		.d-flex.justify-content-between .small[b-aaeea9kvtn] {
			text-align: center;
		}
}
/* _content/ClubTournamentsBlazorApp/Components/Account/Pages/Profile.razor.rz.scp.css */

/* Card Styling */
.card[b-4krhvh4z6n] {
	border: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Tabs Styling */
.nav-tabs[b-4krhvh4z6n] {
	border-bottom: 2px solid #e0e0e0;
}

	.nav-tabs .nav-link[b-4krhvh4z6n] {
		color: #6c757d;
		border: none;
		border-bottom: 3px solid transparent;
		padding: 0.75rem 1.25rem;
		transition: all 0.3s ease;
		font-weight: 500;
		white-space: nowrap;
	}

		.nav-tabs .nav-link:hover[b-4krhvh4z6n] {
			color: var(--primary-color);
			border-bottom-color: rgba(29, 209, 161, 0.3);
		}

		.nav-tabs .nav-link.active[b-4krhvh4z6n] {
			color: var(--primary-color);
			border-bottom-color: var(--primary-color);
			background-color: transparent;
		}

		.nav-tabs .nav-link .badge[b-4krhvh4z6n] {
			font-size: 0.65rem;
			padding: 0.2rem 0.4rem;
			vertical-align: super;
			position: relative;
			top: -2px;
		}

/* Compact tabs for mobile */
.nav-tabs-compact .nav-link[b-4krhvh4z6n] {
	padding: 0.5rem 0.75rem;
	font-size: 0.9rem;
}

.tab-content[b-4krhvh4z6n] {
	padding-top: 1rem;
}

.tab-pane[b-4krhvh4z6n] {
	animation: fadeIn-b-4krhvh4z6n 0.3s ease-in;
}

@keyframes fadeIn-b-4krhvh4z6n {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Profile Sections */
.profile-section[b-4krhvh4z6n] {
	padding: 1.5rem;
	background: #fafbfc;
	border-radius: 0.5rem;
	border: 1px solid #e5e7eb;
}

.section-title[b-4krhvh4z6n] {
	font-weight: 600;
	color: var(--secondary-color);
	font-size: 1rem;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--primary-color);
	display: inline-block;
}

/* Avatar Styling */
.avatar-container[b-4krhvh4z6n] {
	position: relative;
	width: 180px;
	height: 180px;
	margin: 0 auto;
}

.profile-avatar[b-4krhvh4z6n] {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid var(--primary-color);
	box-shadow: 0 4px 12px rgba(29, 209, 161, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

	.profile-avatar:hover[b-4krhvh4z6n] {
		transform: scale(1.05);
		box-shadow: 0 6px 16px rgba(29, 209, 161, 0.3);
	}

.profile-avatar-placeholder[b-4krhvh4z6n] {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
	border: 3px dashed #dee2e6;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

	.profile-avatar-placeholder:hover[b-4krhvh4z6n] {
		border-color: var(--primary-color);
		background: linear-gradient(135deg, #f0f9f7 0%, #e8f5f0 100%);
	}

/* Form Styling */
.form-label[b-4krhvh4z6n] {
	color: var(--secondary-color);
	font-size: 0.9rem;
	margin-bottom: 0.4rem;
}

.fw-600[b-4krhvh4z6n] {
	font-weight: 600;
}

.form-control:focus[b-4krhvh4z6n],
.form-select:focus[b-4krhvh4z6n] {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 0.2rem rgba(29, 209, 161, 0.25);
}

.form-control[b-4krhvh4z6n],
.form-select[b-4krhvh4z6n] {
	border-color: #ddd;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

	.form-control:disabled[b-4krhvh4z6n] {
		background-color: #f8f9fa;
		cursor: not-allowed;
	}

.input-group-text[b-4krhvh4z6n] {
	background-color: #f8f9fa;
	border-color: #ddd;
	color: var(--secondary-color);
}

/* Button Styling */
.btn-primary[b-4krhvh4z6n] {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	font-weight: 500;
	transition: all 0.3s ease;
}

	.btn-primary:hover[b-4krhvh4z6n] {
		background-color: #1abc9c;
		border-color: #1abc9c;
		transform: translateY(-1px);
		box-shadow: 0 4px 8px rgba(29, 209, 161, 0.3);
	}

.btn-outline-primary[b-4krhvh4z6n] {
	color: var(--primary-color);
	border-color: var(--primary-color);
	font-weight: 500;
}

	.btn-outline-primary:hover[b-4krhvh4z6n] {
		background-color: var(--primary-color);
		border-color: var(--primary-color);
		color: white;
	}

.btn-success[b-4krhvh4z6n] {
	background-color: #27ae60;
	border-color: #27ae60;
}

	.btn-success:hover[b-4krhvh4z6n] {
		background-color: #229954;
		border-color: #229954;
	}

.btn-danger[b-4krhvh4z6n] {
	background-color: #e74c3c;
	border-color: #e74c3c;
}

	.btn-danger:hover[b-4krhvh4z6n] {
		background-color: #c0392b;
		border-color: #c0392b;
	}

/* Alert Styling */
.alert-success[b-4krhvh4z6n] {
	background-color: #E8F5F0;
	border-color: var(--primary-color);
	color: var(--secondary-color);
}

.alert-danger[b-4krhvh4z6n] {
	background-color: #fee;
	border-color: #e74c3c;
	color: #c0392b;
}

.alert-info[b-4krhvh4z6n] {
	background-color: #e8f4fd;
	border-color: #3498db;
	color: #2874a6;
}

/* Responsive Design */
@media (max-width: 991.98px) {
	.profile-section[b-4krhvh4z6n] {
		padding: 1rem;
	}

	.avatar-container[b-4krhvh4z6n],
	.profile-avatar[b-4krhvh4z6n],
	.profile-avatar-placeholder[b-4krhvh4z6n] {
		width: 150px;
		height: 150px;
	}

	.section-title[b-4krhvh4z6n] {
		font-size: 0.95rem;
	}
}

@media (max-width: 767.98px) {
	.avatar-container[b-4krhvh4z6n],
	.profile-avatar[b-4krhvh4z6n],
	.profile-avatar-placeholder[b-4krhvh4z6n] {
		width: 120px;
		height: 120px;
	}

	.profile-section[b-4krhvh4z6n] {
		padding: 0.75rem;
		margin-bottom: 1rem;
	}

	.section-title[b-4krhvh4z6n] {
		font-size: 0.9rem;
	}

	.nav-tabs .nav-link[b-4krhvh4z6n] {
		padding: 0.5rem 0.5rem;
		font-size: 0.875rem;
	}

	.nav-tabs-compact .nav-link[b-4krhvh4z6n] {
		padding: 0.4rem 0.5rem;
		font-size: 0.85rem;
	}

		.nav-tabs .nav-link i[b-4krhvh4z6n] {
			font-size: 0.85rem;
		}
}

/* Utility Classes */
.text-primary-custom[b-4krhvh4z6n] {
	color: var(--primary-color);
}

.border-primary-custom[b-4krhvh4z6n] {
	border-color: var(--primary-color) !important;
}

/* Smooth Transitions */
*[b-4krhvh4z6n] {
	transition: color 0.2s ease, background-color 0.2s ease;
}

button[b-4krhvh4z6n], .btn[b-4krhvh4z6n] {
	transition: all 0.3s ease;
}

/* _content/ClubTournamentsBlazorApp/Components/Account/Pages/Register.razor.rz.scp.css */
/* Register page - matches login with adjustments for more content */
.login-page-background[b-7m65xznpjk] {
  background: url('/images/slider_ct.png') center center / cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  overflow-y: auto;
  position: relative;
}

.login-page-background[b-7m65xznpjk]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.login-container[b-7m65xznpjk] {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  width: 100%;
  margin: auto;
}

.card[b-7m65xznpjk] {
  overflow: hidden;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.welcome-panel[b-7m65xznpjk] {
  color: white;
  padding: 3rem 2rem;
}

.welcome-panel .lead[b-7m65xznpjk] {
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.6;
}

.form-control[b-7m65xznpjk] {
  border-radius: 0.5rem;
  border: 1px solid #e0e0e0;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus[b-7m65xznpjk] {
  border-color: #1DD1A1;
  box-shadow: 0 0 0 0.2rem rgba(29, 209, 161, 0.25);
}

.form-row-inline[b-7m65xznpjk] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label-inline[b-7m65xznpjk] {
  font-weight: 500;
  color: #333;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.form-input-inline[b-7m65xznpjk] {
  flex: 1;
}

.btn-success[b-7m65xznpjk] {
  background: linear-gradient(135deg, #01d099 0%, #01d099 100%);
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(29, 209, 161, 0.3);
}

  .btn-success:hover[b-7m65xznpjk] {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(29, 209, 161, 0.4);
    background: linear-gradient(135deg, #01d099 0%, #01d099 100%);
  }

.validation-message[b-7m65xznpjk] {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

.small[b-7m65xznpjk] {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.small:hover[b-7m65xznpjk] {
  color: #1DD1A1;
  text-decoration: none;
}

footer[b-7m65xznpjk] {
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Checkbox styling */
.form-check[b-7m65xznpjk] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-check-input[b-7m65xznpjk] {
  width: 1.2rem;
  height: 1.2rem;
  cursor: pointer;
  flex-shrink: 0;
}

.form-check-input:checked[b-7m65xznpjk] {
  background-color: #1DD1A1;
  border-color: #1DD1A1;
}

.form-check-label[b-7m65xznpjk] {
  cursor: pointer;
  margin-bottom: 0;
  user-select: none;
  font-size: 0.9rem;
}

/* Terms checkbox row */
.mb-3.form-row-inline.align-items-center .form-input-inline[b-7m65xznpjk] {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .welcome-panel[b-7m65xznpjk] {
    border-radius: 0.5rem 0.5rem 0 0 !important;
    padding: 2rem 1.5rem;
  }

  .card-body[b-7m65xznpjk] {
    padding: 2rem 1.5rem !important;
  }
}

@media (max-width: 575.98px) {
  .login-page-background[b-7m65xznpjk] {
    padding: 1rem 0.5rem;
  }

  .card-body[b-7m65xznpjk] {
    padding: 1.5rem 1rem !important;
  }

  .btn-success[b-7m65xznpjk] {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  h3[b-7m65xznpjk] {
    font-size: 1.5rem;
  }

  .welcome-panel img[b-7m65xznpjk] {
    max-width: 140px;
  }

  .d-flex.justify-content-between[b-7m65xznpjk] {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch !important;
  }

  .d-flex.justify-content-between .btn-success[b-7m65xznpjk] {
    width: 100%;
  }

  .d-flex.justify-content-between .small[b-7m65xznpjk] {
    text-align: center;
  }

  .mb-3[b-7m65xznpjk] {
    margin-bottom: 1rem !important;
  }

  .form-check-label[b-7m65xznpjk] {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}
/* _content/ClubTournamentsBlazorApp/Components/Account/Pages/RegisterConfirmation.razor.rz.scp.css */
.login-page-background[b-ypqjzlysqz] {
  background: url('/images/slider_ct.png') center center / cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
  position: relative;
}

.login-page-background[b-ypqjzlysqz]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.login-container[b-ypqjzlysqz] {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  width: 100%;
  margin: auto;
}

.card[b-ypqjzlysqz] {
  overflow: hidden;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.welcome-panel[b-ypqjzlysqz] {
  color: white;
  padding: 3rem 2rem;
}

.welcome-panel .lead[b-ypqjzlysqz] {
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.6;
}

.btn-secondary[b-ypqjzlysqz] {
  background: #6c757d;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover[b-ypqjzlysqz] {
  background: #5a6268;
  transform: translateY(-1px);
}

.btn-warning[b-ypqjzlysqz] {
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-warning:hover[b-ypqjzlysqz] {
  transform: translateY(-1px);
}

footer[b-ypqjzlysqz] {
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Alert styling */
.alert-danger[b-ypqjzlysqz] {
  border-radius: 0.5rem;
  border: 1px solid #f5c2c7;
  background-color: #f8d7da;
  color: #842029;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.alert-warning[b-ypqjzlysqz] {
  border-radius: 0.5rem;
  border: 1px solid #ffecb5;
  background-color: #fff3cd;
  color: #664d03;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

/* Success icon styling */
.bi-envelope-check[b-ypqjzlysqz] {
  display: inline-block;
}

/* Link styling */
.text-decoration-none[b-ypqjzlysqz] {
  color: #1DD1A1;
  transition: color 0.3s ease;
}

.text-decoration-none:hover[b-ypqjzlysqz] {
  color: #16A085;
  text-decoration: underline !important;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .welcome-panel[b-ypqjzlysqz] {
    border-radius: 0.5rem 0.5rem 0 0 !important;
    padding: 2rem 1.5rem;
  }

  .card-body[b-ypqjzlysqz] {
    padding: 2rem 1.5rem !important;
  }
}

@media (max-width: 575.98px) {
  .login-page-background[b-ypqjzlysqz] {
    padding: 0.5rem;
  }

  .card-body[b-ypqjzlysqz] {
    padding: 1.5rem 1rem !important;
  }

  .btn-secondary[b-ypqjzlysqz],
  .btn-warning[b-ypqjzlysqz] {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  h3[b-ypqjzlysqz] {
    font-size: 1.5rem;
  }

  .welcome-panel img[b-ypqjzlysqz] {
    max-width: 140px;
  }
}
/* _content/ClubTournamentsBlazorApp/Components/Account/Pages/ResendActivationEmail.razor.rz.scp.css */
.login-page-background[b-xaoemzf50a] {
  background: url('/images/slider_ct.png') center center / cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
  position: relative;
}

.login-page-background[b-xaoemzf50a]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.login-container[b-xaoemzf50a] {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  width: 100%;
  margin: auto;
}

.card[b-xaoemzf50a] {
  overflow: hidden;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.welcome-panel[b-xaoemzf50a] {
  color: white;
  padding: 3rem 2rem;
}

.welcome-panel .lead[b-xaoemzf50a] {
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.6;
}

.form-control[b-xaoemzf50a] {
  border-radius: 0.5rem;
  border: 1px solid #e0e0e0;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus[b-xaoemzf50a] {
  border-color: #1DD1A1;
  box-shadow: 0 0 0 0.2rem rgba(29, 209, 161, 0.25);
}

.form-row-inline[b-xaoemzf50a] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label-inline[b-xaoemzf50a] {
  font-weight: 500;
  color: #333;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.form-input-inline[b-xaoemzf50a] {
  flex: 1;
}

.btn-success[b-xaoemzf50a] {
  background: linear-gradient(135deg, #01d099 0%, #01d099 100%);
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(29, 209, 161, 0.3);
}

  .btn-success:hover[b-xaoemzf50a] {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(29, 209, 161, 0.4);
    background: linear-gradient(135deg, #01d099 0%, #01d099 100%);
  }

.validation-message[b-xaoemzf50a] {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

.small[b-xaoemzf50a] {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.small:hover[b-xaoemzf50a] {
  color: #1DD1A1;
  text-decoration: none;
}

footer[b-xaoemzf50a] {
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Alert styling */
.alert-danger[b-xaoemzf50a] {
  border-radius: 0.5rem;
  border: 1px solid #f5c2c7;
  background-color: #f8d7da;
  color: #842029;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

/* Success icon styling */
.bi-envelope-check[b-xaoemzf50a] {
  display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .welcome-panel[b-xaoemzf50a] {
    border-radius: 0.5rem 0.5rem 0 0 !important;
    padding: 2rem 1.5rem;
  }

  .card-body[b-xaoemzf50a] {
    padding: 2rem 1.5rem !important;
  }
}

@media (max-width: 575.98px) {
  .login-page-background[b-xaoemzf50a] {
    padding: 0.5rem;
  }

  .card-body[b-xaoemzf50a] {
    padding: 1.5rem 1rem !important;
  }

  .btn-success[b-xaoemzf50a] {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  h3[b-xaoemzf50a] {
    font-size: 1.5rem;
  }

  .welcome-panel img[b-xaoemzf50a] {
    max-width: 140px;
  }

  .d-flex.justify-content-between[b-xaoemzf50a] {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch !important;
  }

  .d-flex.justify-content-between .btn-success[b-xaoemzf50a] {
    width: 100%;
  }

  .d-flex.justify-content-between .small[b-xaoemzf50a] {
    text-align: center;
  }
}
/* _content/ClubTournamentsBlazorApp/Components/Layout/AuthLayout.razor.rz.scp.css */
.auth-page[b-owt2siuf8q] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
/* _content/ClubTournamentsBlazorApp/Components/Layout/LandingLayout.razor.rz.scp.css */
/* Landing Layout Specific Styles */


html[b-vuaq60o03x], body[b-vuaq60o03x] {
  background: none;
  background-color: none;
}

/* Main content padding */
.landing-main[b-vuaq60o03x] {
    padding-top: 70px; /* Account for fixed navbar */
}

/* Footer styling */
.landing-footer[b-vuaq60o03x] {
    margin-top: 4rem;
}

.landing-footer h5[b-vuaq60o03x],
.landing-footer h6[b-vuaq60o03x] {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.landing-footer .social-links a[b-vuaq60o03x] {
    transition: all 0.3s ease;
    display: inline-block;
}

.landing-footer .social-links a:hover[b-vuaq60o03x] {
    transform: translateY(-3px);
    color: #1dd1a1 !important;
}

.landing-footer a:hover[b-vuaq60o03x] {
    color: #1dd1a1 !important;
    transition: color 0.3s ease;
}
/* _content/ClubTournamentsBlazorApp/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-98h76vri0n] {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  max-width: 100%;
}

main[b-98h76vri0n] {
    flex: 1;
    overflow-x: hidden;
}

.top-row[b-98h76vri0n] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: space-between;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-98h76vri0n]  a, .top-row[b-98h76vri0n]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-98h76vri0n]  a:hover, .top-row[b-98h76vri0n]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-98h76vri0n]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 740.98px) {
    .top-row[b-98h76vri0n] {
        justify-content: space-between;
    }

    .top-row[b-98h76vri0n]  a, .top-row[b-98h76vri0n]  .btn-link {
        margin-left: 0;
    }

    .page[b-98h76vri0n] {
        overflow-x: hidden;
    }

    main[b-98h76vri0n] {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        padding-bottom: calc(65px + env(safe-area-inset-bottom) + 20px);
    }

    /* Add breathing room for content above mobile nav */
    main > *[b-98h76vri0n] {
        margin-bottom: 20px;
    }

    /* Container spacing on mobile */
    main .container[b-98h76vri0n],
    main .container-fluid[b-98h76vri0n] {
        padding-bottom: 20px;
    }
}

@media (min-width: 741px) {
    .page[b-98h76vri0n] {
        flex-direction: row;
    }

    .sidebar[b-98h76vri0n] {
        width: 250px;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 100;
    }

        /* Custom scrollbar for sidebar */
        .sidebar[b-98h76vri0n]::-webkit-scrollbar {
            width: 6px;
        }

        .sidebar[b-98h76vri0n]::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.1);
        }

        .sidebar[b-98h76vri0n]::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 3px;
        }

            .sidebar[b-98h76vri0n]::-webkit-scrollbar-thumb:hover {
                background: rgba(255, 255, 255, 0.3);
            }

    main[b-98h76vri0n] {
        margin-left: 250px;
        width: calc(100% - 250px);
        min-height: 100vh;
    }

    .top-row[b-98h76vri0n] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-98h76vri0n]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    article[b-98h76vri0n] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
        height: calc(100% - (3.5rem));
    }
}

#blazor-error-ui[b-98h76vri0n] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-98h76vri0n] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/ClubTournamentsBlazorApp/Components/Layout/NavMenu.razor.rz.scp.css */
/* ===== NAVBAR TOGGLER (MOBILE) ===== */
.navbar-toggler[b-d0vbnb2yob] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.2s ease;
}

    .navbar-toggler:hover[b-d0vbnb2yob] {
        background-color: rgba(255, 255, 255, 0.15);
    }

    .navbar-toggler:checked[b-d0vbnb2yob] {
        background-color: rgba(255, 255, 255, 0.2);
    }

/* ===== TOP ROW ===== */
.top-row[b-d0vbnb2yob] {
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.navbar-brand[b-d0vbnb2yob] {
    font-size: 1.1rem;
}

/* ===== NAV SCROLLABLE ===== */
.nav-scrollable[b-d0vbnb2yob] {
    display: none;
    height: calc(100vh - 6rem);
    overflow-y: auto;
    overflow-x: hidden;
}

    /* Custom scrollbar */
    .nav-scrollable[b-d0vbnb2yob]::-webkit-scrollbar {
        width: 6px;
    }

    .nav-scrollable[b-d0vbnb2yob]::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
    }

    .nav-scrollable[b-d0vbnb2yob]::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 3px;
    }

        .nav-scrollable[b-d0vbnb2yob]::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.3);
        }

.navbar-toggler:checked ~ .nav-scrollable[b-d0vbnb2yob] {
    display: block;
}

/* ===== NAV SECTIONS ===== */
.nav-section[b-d0vbnb2yob] {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .nav-section:last-child[b-d0vbnb2yob] {
        border-bottom: none;
    }

.nav-section-title[b-d0vbnb2yob] {
    padding: 0.5rem 1.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.nav-section-account[b-d0vbnb2yob] {
    margin-top: auto;
}

/* ===== NAV ITEMS ===== */
.nav-item[b-d0vbnb2yob] {
    font-size: 0.9rem;
    padding-bottom: 0.25rem;
}

    .nav-item[b-d0vbnb2yob]  .nav-link {
        color: rgba(255, 255, 255, 0.8);
        background: none;
        border: none;
        border-radius: 8px;
        height: auto;
        min-height: 2.75rem;
        display: flex;
        align-items: center;
        width: 100%;
        padding: 0.625rem 1rem;
        text-decoration: none;
        transition: all 0.2s ease;
        gap: 0.75rem;
        margin: 0.125rem 0;
    }

        .nav-item[b-d0vbnb2yob]  .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            transform: translateX(4px);
        }

    .nav-item[b-d0vbnb2yob]  a.active {
        background: linear-gradient(90deg, rgba(25, 197, 155, 0.2) 0%, rgba(25, 197, 155, 0.05) 100%);
        color: #19c59b;
        font-weight: 600;
        border-left: 3px solid #19c59b;
        padding-left: calc(1rem - 3px);
    }

        .nav-item[b-d0vbnb2yob]  a.active .nav-icon {
            color: #19c59b;
        }

/* ===== NAV ICONS & TEXT ===== */
.nav-icon[b-d0vbnb2yob] {
    width: 1.25rem;
    text-align: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.nav-text[b-d0vbnb2yob] {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== USER PROFILE LINK ===== */
.user-profile-link[b-d0vbnb2yob] {
    gap: 0.75rem !important;
    padding: 0.875rem 1rem !important;
}

.user-avatar[b-d0vbnb2yob] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #19c59b 0%, #15a582 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

    .user-avatar i[b-d0vbnb2yob] {
        font-size: 1.1rem;
        color: white;
    }

.user-profile-link:hover .user-avatar[b-d0vbnb2yob] {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(25, 197, 155, 0.4);
}

.user-info[b-d0vbnb2yob] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.user-name[b-d0vbnb2yob] {
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
}

.user-label[b-d0vbnb2yob] {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== LOGOUT LINK ===== */
.logout-link[b-d0vbnb2yob] {
    color: rgba(255, 100, 100, 0.9) !important;
}

    .logout-link:hover[b-d0vbnb2yob] {
        background-color: rgba(255, 100, 100, 0.1) !important;
        color: #ff6464 !important;
    }

        .logout-link:hover .nav-icon[b-d0vbnb2yob] {
            color: #ff6464;
        }

/* ===== RESPONSIVE ===== */
@media (min-width: 641px) {
    .navbar-toggler[b-d0vbnb2yob] {
        display: none;
    }

    .nav-scrollable[b-d0vbnb2yob] {
        display: block;
    }
}

@media (max-width: 640px) {
    .nav-scrollable[b-d0vbnb2yob] {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
    }
}

/* _content/ClubTournamentsBlazorApp/Components/Match/MatchComponent.razor.rz.scp.css */
/* ===== MATCH CARD ===== */
.match[b-649wem3qi0] {
	background: #ffffff;
	border-radius: 12px;
	margin-bottom: 1.5rem;
	padding: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
	overflow: hidden;
}

	.match:hover[b-649wem3qi0] {
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
		transform: translateY(-2px);
	}

/* ===== MATCH HEADER ===== */
.match__header[b-649wem3qi0] {
	background: linear-gradient(135deg, #19c59b 0%, #15a582 100%);
	border-radius: 0;
	padding: 12px 16px;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 52px;
}

	.match__header .left[b-649wem3qi0] {
		display: flex;
		flex-direction: column;
		gap: 2px;
	}

		.match__header .left strong[b-649wem3qi0] {
			font-size: 0.95rem;
			font-weight: 600;
			letter-spacing: 0.3px;
		}

	.match__header .right[b-649wem3qi0] {
		display: flex;
		align-items: center;
		gap: 8px;
	}

.match-date[b-649wem3qi0] {
	font-size: 0.75rem;
	opacity: 0.9;
	font-weight: 400;
	display: flex;
	align-items: center;
	gap: 4px;
}

	.match-date[b-649wem3qi0]::before {
		content: "📅";
		font-size: 0.7rem;
	}

.btn-icon[b-649wem3qi0] {
	padding: 6px 10px;
	transition: all 0.2s ease;
}

	.btn-icon:hover[b-649wem3qi0] {
		transform: scale(1.05);
	}

	.btn-icon i[b-649wem3qi0] {
		font-size: 0.9rem;
	}

/* ===== WALKOVER BANNER ===== */
.walkover-banner[b-649wem3qi0] {
	background: linear-gradient(90deg, #fff5f5 0%, #ffe5e5 100%);
	color: #dc2626;
	padding: 10px 16px;
	font-weight: 600;
	font-size: 0.85rem;
	border-bottom: 2px solid #fecaca;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

	.walkover-banner[b-649wem3qi0]::before {
		content: "⚠️";
	}

/* ===== MATCH BODY ===== */
.match-body[b-649wem3qi0] {
	background: #fafafa;
	padding: 12px 0;
}

.team-row[b-649wem3qi0] {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 16px;
	min-height: 44px;
	position: relative;
}

	.team-row:first-child[b-649wem3qi0] {
		background: rgba(255, 255, 255, 0.5);
	}

	.team-row:nth-child(2)[b-649wem3qi0] {
		background: rgba(0, 0, 0, 0.02);
	}

.team-label[b-649wem3qi0] {
	font-weight: 500;
	font-size: 0.9rem;
	color: #1f2937;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* ===== POINTS/SETS ===== */
.points[b-649wem3qi0] {
	display: flex;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.points__cell[b-649wem3qi0] {
	width: 40px;
	height: 36px;
	background: #ffffff;
	border: 2px solid #e5e7eb;
	border-radius: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-size: 0.95rem;
	color: #4b5563;
	transition: all 0.2s ease;
	position: relative;
}

	.points__cell.win[b-649wem3qi0] {
		background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
		border-color: #10b981;
		color: #065f46;
		transform: scale(1.05);
		box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
	}

		.points__cell.win[b-649wem3qi0]::after {
			content: "✓";
			position: absolute;
			top: -4px;
			right: -4px;
			background: #10b981;
			color: white;
			width: 14px;
			height: 14px;
			border-radius: 50%;
			font-size: 0.6rem;
			display: flex;
			align-items: center;
			justify-content: center;
		}

.points__input[b-649wem3qi0] {
	width: 36px;
	height: 32px;
	border: 2px solid #9ca3af;
	border-radius: 6px;
	text-align: center;
	font-weight: 700;
	font-size: 0.95rem;
	transition: all 0.2s ease;
}

	.points__input:focus[b-649wem3qi0] {
		outline: none;
		border-color: #19c59b;
		box-shadow: 0 0 0 3px rgba(25, 197, 155, 0.1);
		transform: scale(1.05);
	}

/* ===== ADD SET BUTTON ===== */
.add-set-btn[b-649wem3qi0] {
	width: 100%;
	border-radius: 0;
	background: #f9fafb;
	border: none;
	border-top: 2px dashed #d1d5db;
	color: #19c59b;
	font-weight: 600;
	padding: 12px;
	transition: all 0.2s ease;
}

	.add-set-btn:hover[b-649wem3qi0] {
		background: #f0fdf9;
		color: #15a582;
		border-top-color: #19c59b;
	}


/* ===== STATUS BADGES ===== */
.match-status-badge[b-649wem3qi0] {
	padding: 4px 10px;
	font-size: 0.7rem;
	border-radius: 12px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	transition: all 0.2s ease;
}

	.match-status-badge:hover[b-649wem3qi0] {
		transform: translateY(-1px);
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
	}

.status-home[b-649wem3qi0] {
	background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
	color: #065f46;
	border: 1px solid #10b981;
}

	.status-home[b-649wem3qi0]::before {
		content: "🏆";
		font-size: 0.7rem;
	}

.status-away[b-649wem3qi0] {
	background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
	color: #991b1b;
	border: 1px solid #ef4444;
}

	.status-away[b-649wem3qi0]::before {
		content: "🏆";
		font-size: 0.7rem;
	}

.status-draw[b-649wem3qi0] {
	background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
	color: #374151;
	border: 1px solid #9ca3af;
}

	.status-draw[b-649wem3qi0]::before {
		content: "⚖️";
		font-size: 0.7rem;
	}

.status-planned[b-649wem3qi0] {
	background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
	color: #1e40af;
	border: 1px solid #3b82f6;
}

	.status-planned[b-649wem3qi0]::before {
		content: "";
	}

/* ===== NOT PLAYED STATE ===== */
.not-played-message[b-649wem3qi0] {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9ca3af;
	font-size: 0.85rem;
	font-weight: 500;
	padding: 8px 16px;
	background: linear-gradient(90deg, rgba(243, 244, 246, 0.5) 0%, rgba(229, 231, 235, 0.5) 100%);
	border-radius: 6px;
	gap: 8px;
}

	.not-played-message i[b-649wem3qi0] {
		font-size: 1rem;
		animation: pulse-b-649wem3qi0 2s ease-in-out infinite;
	}

	.not-played-message span[b-649wem3qi0] {
		white-space: nowrap;
		letter-spacing: 0.3px;
	}

@keyframes pulse-b-649wem3qi0 {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

/* ===== NEW MATCH CREATION ===== */
.match-create[b-649wem3qi0] {
	border: 3px dashed #19c59b;
	background: linear-gradient(135deg, #f0fdf9 0%, #e6fcf5 100%);
	box-shadow: 0 4px 12px rgba(25, 197, 155, 0.15);
}

	.match-create .match__header[b-649wem3qi0] {
		background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	}

.team-selection[b-649wem3qi0] {
	width: 100%;
	padding: 8px 0;
}

	.team-selection .form-label[b-649wem3qi0] {
		font-size: 0.8rem;
		font-weight: 700;
		color: #065f46;
		margin-bottom: 6px;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		display: flex;
		align-items: center;
		gap: 6px;
	}

	.team-selection .form-select[b-649wem3qi0],
	.team-selection .form-control[b-649wem3qi0] {
		border: 2px solid #19c59b;
		border-radius: 8px;
		padding: 10px 12px;
		font-weight: 500;
		transition: all 0.2s ease;
	}

		.team-selection .form-select:focus[b-649wem3qi0],
		.team-selection .form-control:focus[b-649wem3qi0] {
			border-color: #059669;
			box-shadow: 0 0 0 4px rgba(25, 197, 155, 0.15);
			transform: scale(1.02);
		}

		.team-selection .form-select:disabled[b-649wem3qi0],
		.team-selection .form-control:disabled[b-649wem3qi0] {
			opacity: 0.6;
			cursor: not-allowed;
		}

/* ===== RESPONSIVE IMPROVEMENTS ===== */
@media (max-width: 576px) {
	.team-label[b-649wem3qi0] {
		font-size: 0.85rem;
	}

	.points__cell[b-649wem3qi0] {
		width: 36px;
		height: 32px;
		font-size: 0.85rem;
	}

	.match__header[b-649wem3qi0] {
		padding: 10px 12px;
	}

	.team-row[b-649wem3qi0] {
		padding: 6px 12px;
	}
}

/* ===== LOADING & DISABLED STATES ===== */
.btn[disabled][b-649wem3qi0] {
	opacity: 0.6;
	cursor: not-allowed;
}

.fa-spinner[b-649wem3qi0] {
	animation: spin-b-649wem3qi0 1s linear infinite;
}

@keyframes spin-b-649wem3qi0 {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
/* _content/ClubTournamentsBlazorApp/Components/Match/MatchScorePage.razor.rz.scp.css */
/* Page container adjustments */
.match-score-page[b-xe3l8as9ex] {
  

}

/* Sidebar (desktop only) */
.sidebar[b-xe3l8as9ex] {
    /*min-height: 100vh;*/
    border-right: 1px solid rgba(255,255,255,0.03);
}
.players-list li[b-xe3l8as9ex] { cursor: default; }

/* Mobile single-card styling preserved from previous file */
.match-score-container[b-xe3l8as9ex] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5;
    min-height: 100vh;
    max-width: 480px;
    margin: auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.match-header[b-xe3l8as9ex] {
    background-color: #005f73;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    font-weight: bold;
    border-radius: 8px;
}

.court-banner[b-xe3l8as9ex] {
    background-color: #cbf3f0;
    color: #005f73;
    font-weight: bold;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
}

/* Desktop match grid */
.match-grid[b-xe3l8as9ex] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

/* Tile styling */
.match-tile[b-xe3l8as9ex] {
    background: white;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.match-tile:hover[b-xe3l8as9ex] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.match-tile .card-header[b-xe3l8as9ex] {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* Adjust player avatar small sizes for sidebar */
.sidebar img[b-xe3l8as9ex] {
    width: 36px;
    height: 36px;
}

/* small helper */
.border-white-10[b-xe3l8as9ex] { border-color: rgba(255,255,255,0.08) !important; }
/* _content/ClubTournamentsBlazorApp/Components/Match/TeamScoreCard.razor.rz.scp.css */
.team-card[b-h6ui5n88hl] {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* Compact mode for desktop grid tiles */
.team-card-compact[b-h6ui5n88hl] {
    padding: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.player-profile[b-h6ui5n88hl] {
    text-align: center;
    width: 120px;
}

.team-card-compact .player-profile[b-h6ui5n88hl] {
    width: 80px;
}

.player-avatar[b-h6ui5n88hl] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e9ecef;
    margin-bottom: 0.5rem;
}

.team-card-compact .player-avatar[b-h6ui5n88hl] {
    width: 45px;
    height: 45px;
    border: 2px solid #e9ecef;
    margin-bottom: 0.25rem;
}

.player-name[b-h6ui5n88hl] {
    font-weight: 600;
    color: #343a40;
    font-size: 0.9rem;
    line-height: 1.2;
}

.team-card-compact .player-name[b-h6ui5n88hl] {
    font-size: 0.65rem;
    font-weight: 500;
}

.score-box-container[b-h6ui5n88hl] {
    position: relative;
    display: flex;
    justify-content: center;
}

.score-line-top[b-h6ui5n88hl] {
    position: absolute;
    top: -24px;
    height: 24px;
    width: 2px;
    background-color: #dee2e6;
}

.score-box[b-h6ui5n88hl] {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.team-card-compact .score-box[b-h6ui5n88hl] {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.score-box-green[b-h6ui5n88hl] {
    background-color: #cbf3f0;
    border: 2px solid #9ef01a;
    color: #005f73;
}

.score-box-white[b-h6ui5n88hl] {
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    color: #495057;
}

.team-card-compact .score-box-green[b-h6ui5n88hl],
.team-card-compact .score-box-white[b-h6ui5n88hl] {
    border-width: 2px;
}

.score-points[b-h6ui5n88hl] {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.team-card-compact .score-points[b-h6ui5n88hl] {
    font-size: 1.25rem;
}

.score-label[b-h6ui5n88hl] {
    font-size: 0.8rem;
    font-weight: 500;
}

.team-card-compact .score-label[b-h6ui5n88hl] {
    font-size: 0.55rem;
}
/* _content/ClubTournamentsBlazorApp/Components/Match/UpcomingMatchesTimeline.razor.rz.scp.css */
/* Timeline Container */
.timeline[b-692skf8uza] {
  position: relative;
  padding-left: 26px;
}

/* Timeline vertical line */
.timeline[b-692skf8uza]::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), #e0e0e0);
}

/* Timeline Item */
.timeline-item[b-692skf8uza] {
    position: relative;
    margin-bottom: 1.5rem;
    padding-left: 15px;
}

.timeline-item:last-child[b-692skf8uza] {
    margin-bottom: 0;
}

/* Timeline Marker */
.timeline-marker[b-692skf8uza] {
    position: absolute;
    left: -26px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-marker i[b-692skf8uza] {
    font-size: 8px;
    color: var(--primary-color);
}

/* Urgent match styling */
.timeline-item-urgent .timeline-marker[b-692skf8uza] {
    border-color: #ffc107;
    background: #fff3cd;
    animation: pulse-b-692skf8uza 2s infinite;
}

.timeline-item-urgent .timeline-marker i[b-692skf8uza] {
    color: #ffc107;
    font-size: 10px;
}

@keyframes pulse-b-692skf8uza {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 193, 7, 0);
    }
}

/* Timeline Content */
.timeline-content[b-692skf8uza] {
    position: relative;
}

/* Timeline Card */
.timeline-card[b-692skf8uza] {
    border: 1px solid #e0e0e0;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.timeline-card:hover[b-692skf8uza] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.timeline-item-urgent .timeline-card[b-692skf8uza] {
    border-color: #ffc107;
    background: #fffef7;
}

/* Match Versus Section */
.match-versus[b-692skf8uza] {
    padding: 0.5rem 0;
}

.match-versus img[b-692skf8uza] {
    border: 2px solid var(--primary-color);
}

/* Team Avatar Styling for Doubles */
.team-avatar[b-692skf8uza] {
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.team-avatar:hover[b-692skf8uza] {
    transform: scale(1.1);
    z-index: 10 !important;
}

/* Doubles Team Avatar Container */
.d-flex.justify-content-center[b-692skf8uza] {
    position: relative;
}

    .d-flex.justify-content-center .team-avatar:first-child[b-692skf8uza] {
        position: relative;
        z-index: 2;
    }

    .d-flex.justify-content-center .team-avatar:last-child[b-692skf8uza] {
        position: relative;
        z-index: 1;
    }

/* Countdown Timer */
.countdown-timer[b-692skf8uza] {
    font-size: 0.9rem;
}

.countdown-timer .fw-bold[b-692skf8uza] {
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .timeline[b-692skf8uza] {
        padding-left: 20px;
    }

    .timeline[b-692skf8uza]::before {
        left: 6px;
    }

    .timeline-marker[b-692skf8uza] {
        left: -21px;
        width: 16px;
        height: 16px;
    }

    .timeline-marker i[b-692skf8uza] {
        font-size: 6px;
    }

    .timeline-item-urgent .timeline-marker i[b-692skf8uza] {
        font-size: 8px;
    }

    .match-versus img[b-692skf8uza] {
        width: 35px !important;
        height: 35px !important;
    }

    .match-versus .fw-500[b-692skf8uza] {
        font-size: 0.75rem;
    }

    .timeline-card .row > div[b-692skf8uza] {
        text-align: center;
    }

    .countdown-timer[b-692skf8uza] {
        text-align: center;
        margin-top: 0.5rem;
    }

    .btn-sm[b-692skf8uza] {
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* Badge styling */
.badge.bg-secondary[b-692skf8uza] {
    display: inline-block;
}

/* Card body spacing */
.timeline-card .card-body[b-692skf8uza] {
    background: white;
    border-radius: 0.75rem;
}

.timeline-item-urgent .timeline-card .card-body[b-692skf8uza] {
    background: #fffef7;
    border-radius: 0.75rem;
}

/* Animation for new items */
@keyframes slideIn-b-692skf8uza {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-item[b-692skf8uza] {
    animation: slideIn-b-692skf8uza 0.3s ease-out;
}

/* Round name badge at bottom */
.border-top[b-692skf8uza] {
    border-color: #e0e0e0 !important;
}
/* _content/ClubTournamentsBlazorApp/Components/Messages/MessageComponent.razor.rz.scp.css */
.messages-container[b-2qzkb7g3mz] {
    height: 600px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.messages-container .row[b-2qzkb7g3mz] {
    height: 100%;
}

/* Conversations Sidebar */
.conversations-sidebar[b-2qzkb7g3mz] {
    border-right: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #f8f9fa;
}

.conversations-header[b-2qzkb7g3mz] {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid #e9ecef;
    background: #fff;
}

.conversation-search[b-2qzkb7g3mz] {
    padding: 0.75rem 1rem;
    background: #fff;
    border-bottom: 1px solid #e9ecef;
}

.conversation-search .form-control:focus[b-2qzkb7g3mz] {
    box-shadow: none;
    border-color: #dee2e6;
}

.conversations-list[b-2qzkb7g3mz] {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem 0;
}

.conversation-item[b-2qzkb7g3mz] {
    padding: 0.875rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.conversation-item:hover[b-2qzkb7g3mz] {
    background: #fff;
}

.conversation-item.active[b-2qzkb7g3mz] {
    background: #e7f3ff;
    border-left: 3px solid var(--primary-color, #007bff);
}

.unread-indicator[b-2qzkb7g3mz] {
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #28a745;
    border: 2px solid #fff;
    border-radius: 50%;
}

/* Chat Area */
.chat-area[b-2qzkb7g3mz] {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
}

.no-conversation-selected[b-2qzkb7g3mz] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.chat-header[b-2qzkb7g3mz] {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e9ecef;
    background: #fff;
    display: flex;
    align-items: center;
}

.messages-body[b-2qzkb7g3mz] {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Messages */
.message-wrapper[b-2qzkb7g3mz] {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    width: 100%;
}

.message-wrapper.sent[b-2qzkb7g3mz] {
    justify-content: flex-end;
}

.message-wrapper.received[b-2qzkb7g3mz] {
    justify-content: flex-start;
}

.message-avatar[b-2qzkb7g3mz] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.message-bubble[b-2qzkb7g3mz] {
    max-width: 70%;
    padding: 0.75rem 1rem;
    border-radius: 18px;
    word-wrap: break-word;
    position: relative;
}

.message-wrapper.sent .message-bubble[b-2qzkb7g3mz] {
    background: var(--primary-color, #007bff);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.message-wrapper.received .message-bubble[b-2qzkb7g3mz] {
    background: #e9ecef;
    color: #212529;
    border-bottom-left-radius: 4px;
}

.message-content[b-2qzkb7g3mz] {
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.message-time[b-2qzkb7g3mz] {
    font-size: 0.75rem;
    opacity: 0.8;
    text-align: right;
}

/* Message Input */
.message-input-area[b-2qzkb7g3mz] {
    padding: 1rem 1.25rem;
    border-top: 1px solid #e9ecef;
    background: #fff;
}

.message-input-area .form-control[b-2qzkb7g3mz] {
    padding: 0.75rem 1rem;
    border-radius: 24px;
    background: #f8f9fa;
}

.message-input-area .form-control:focus[b-2qzkb7g3mz] {
    box-shadow: none;
    background: #fff;
    border-color: var(--primary-color, #007bff);
}

.message-input-area .btn[b-2qzkb7g3mz] {
    border-radius: 24px;
    padding: 0.75rem 1.5rem;
}

/* Scrollbar Styling */
.conversations-list[b-2qzkb7g3mz]::-webkit-scrollbar,
.messages-body[b-2qzkb7g3mz]::-webkit-scrollbar {
    width: 6px;
}

.conversations-list[b-2qzkb7g3mz]::-webkit-scrollbar-track,
.messages-body[b-2qzkb7g3mz]::-webkit-scrollbar-track {
    background: transparent;
}

.conversations-list[b-2qzkb7g3mz]::-webkit-scrollbar-thumb,
.messages-body[b-2qzkb7g3mz]::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 3px;
}

.conversations-list[b-2qzkb7g3mz]::-webkit-scrollbar-thumb:hover,
.messages-body[b-2qzkb7g3mz]::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

/* Responsive Design */
@media (max-width: 767px) {
    .messages-container[b-2qzkb7g3mz] {
        height: calc(100vh - 200px);
    }
    
    .message-bubble[b-2qzkb7g3mz] {
        max-width: 85%;
    }
}

/* Badges */
.badge.bg-primary[b-2qzkb7g3mz] {
    background-color: var(--primary-color, #007bff) !important;
}

/* Loading States */
.spinner-border-sm[b-2qzkb7g3mz] {
    width: 1.5rem;
    height: 1.5rem;
}

/* Input Group */
.input-group-text[b-2qzkb7g3mz] {
    background: transparent;
    border: 1px solid #dee2e6;
}
/* _content/ClubTournamentsBlazorApp/Components/Pages/LandingPage.razor.rz.scp.css */
/* Main Landing Page Styles - Specific CSS is now in component files */
/* Components/Pages/Landing/PricingSection.razor.css */
/* Components/Pages/Landing/AboutSection.razor.css */



/* _content/ClubTournamentsBlazorApp/Components/Pages/Landing/AboutSection.razor.rz.scp.css */
/* ===== ABOUT SECTION - HOW IT WORKS COMPACT ===== */

.how-it-works-compact[b-m0fil85j4m] {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(25, 197, 155, 0.1);
}

    .how-it-works-compact h4[b-m0fil85j4m] {
        color: #1f2937;
        font-size: 1.5rem;
    }

/* Step Item */
.step-item[b-m0fil85j4m] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .step-item:hover[b-m0fil85j4m] {
        border-color: #19c59b;
        background: linear-gradient(135deg, #f0fdf9 0%, #ffffff 100%);
        box-shadow: 0 4px 15px rgba(25, 197, 155, 0.15);
        transform: translateX(8px);
    }

    .step-item:last-child[b-m0fil85j4m] {
        margin-bottom: 0;
    }

    /* Progress Bar on Hover */
    .step-item[b-m0fil85j4m]::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(180deg, #19c59b 0%, #15a582 100%);
        transform: scaleY(0);
        transition: transform 0.3s ease;
        transform-origin: top;
    }

    .step-item:hover[b-m0fil85j4m]::before {
        transform: scaleY(1);
    }

/* Step Number Badge */
.step-number-badge[b-m0fil85j4m] {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #19c59b 0%, #15a582 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(25, 197, 155, 0.3);
    transition: all 0.3s ease;
}

.step-item:hover .step-number-badge[b-m0fil85j4m] {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(25, 197, 155, 0.4);
}

/* Step Details */
.step-details[b-m0fil85j4m] {
    flex: 1;
    min-width: 0;
}

.step-title[b-m0fil85j4m] {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.step-item:hover .step-title[b-m0fil85j4m] {
    color: #19c59b;
}

.step-text[b-m0fil85j4m] {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Step Icon */
.step-icon[b-m0fil85j4m] {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e6fcf5 0%, #d1fae5 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

    .step-icon i[b-m0fil85j4m] {
        font-size: 1.25rem;
        color: #19c59b;
        transition: all 0.3s ease;
    }

.step-item:hover .step-icon[b-m0fil85j4m] {
    background: linear-gradient(135deg, #19c59b 0%, #15a582 100%);
    transform: scale(1.1);
}

    .step-item:hover .step-icon i[b-m0fil85j4m] {
        color: white;
    }

/* About Image Wrapper */
.about-image-wrapper[b-m0fil85j4m] {
    position: relative;
}

    .about-image-wrapper img[b-m0fil85j4m] {
        transition: transform 0.3s ease;
    }

    .about-image-wrapper:hover img[b-m0fil85j4m] {
        transform: scale(1.02);
    }

/* Responsive */
@media (max-width: 768px) {
    .how-it-works-compact[b-m0fil85j4m] {
        padding: 1.5rem;
    }

        .how-it-works-compact h4[b-m0fil85j4m] {
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
        }

    .step-item[b-m0fil85j4m] {
        padding: 1rem;
        gap: 0.875rem;
    }

    .step-number-badge[b-m0fil85j4m] {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        border-radius: 10px;
    }

    .step-title[b-m0fil85j4m] {
        font-size: 0.9rem;
    }

    .step-text[b-m0fil85j4m] {
        font-size: 0.8rem;
    }

    .step-icon[b-m0fil85j4m] {
        width: 36px;
        height: 36px;
    }

        .step-icon i[b-m0fil85j4m] {
            font-size: 1.1rem;
        }
}

@media (max-width: 576px) {
    .step-item[b-m0fil85j4m] {
        flex-wrap: wrap;
    }

    .step-icon[b-m0fil85j4m] {
        order: -1;
        margin-left: auto;
    }
}
/* _content/ClubTournamentsBlazorApp/Components/Pages/Landing/HeroSection.razor.rz.scp.css */
/* Hero Section Modern Styling */
.hero-section[b-ua3u3melvq] {
    position: relative;
    margin-top: -70px; /* Compensate for fixed navbar */
    min-height: 100vh;
    overflow: hidden;
}

.carousel[b-ua3u3melvq] {
    height: 100vh;
    min-height: 600px;
}

.carousel-inner[b-ua3u3melvq] {
    height: 100%;
}

.carousel-item[b-ua3u3melvq] {
    height: 100%;
}

/* Hero image with overlay */
.hero-image[b-ua3u3melvq] {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

/* Custom carousel caption positioning */
.carousel-caption-custom[b-ua3u3melvq] {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    padding: 2rem 0;
}

/* Content blocks */
.hero-content-block[b-ua3u3melvq] {
    max-width: 600px;
}

.hero-content-block h1[b-ua3u3melvq] {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    line-height: 1.2;
}

.hero-content-block p[b-ua3u3melvq] {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Logo block with glassmorphism */
.hero-logo-block[b-ua3u3melvq] {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-logo-block:hover[b-ua3u3melvq] {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.hero-logo-img[b-ua3u3melvq] {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
}

/* Modern buttons */
.hero-section .btn[b-ua3u3melvq] {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-section .btn-success[b-ua3u3melvq] {
    background: linear-gradient(135deg, #1dd1a1 0%, #16a085 100%);
    border: none;
}

.hero-section .btn-success:hover[b-ua3u3melvq] {
    background: linear-gradient(135deg, #16a085 0%, #148f72 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(29, 209, 161, 0.5);
}

.hero-section .btn-outline-light[b-ua3u3melvq] {
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-section .btn-outline-light:hover[b-ua3u3melvq] {
    background: rgba(255, 255, 255, 0.95);
    color: #0f1419;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
}

/* Carousel indicators */
.carousel-indicators[b-ua3u3melvq] {
    bottom: 30px;
}

.carousel-indicators button[b-ua3u3melvq] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.carousel-indicators button.active[b-ua3u3melvq] {
    background-color: #1dd1a1;
    border-color: #1dd1a1;
    transform: scale(1.2);
}

/* Responsive design */
@media (max-width: 991px) {
    .hero-section[b-ua3u3melvq] {
        margin-top: -70px;
    }

    .carousel[b-ua3u3melvq] {
        min-height: 700px;
    }

    .hero-content-block h1[b-ua3u3melvq] {
        font-size: 2.5rem;
    }

    .hero-content-block p[b-ua3u3melvq] {
        font-size: 1rem;
    }

    .hero-logo-img[b-ua3u3melvq] {
        max-width: 200px;
    }
}

@media (max-width: 767px) {
    .hero-section[b-ua3u3melvq] {
        margin-top: -70px;
    }

    .carousel[b-ua3u3melvq] {
        min-height: 650px;
    }

    .carousel-caption-custom[b-ua3u3melvq] {
        padding: 1em 1em;
    }

    .hero-content-block h1[b-ua3u3melvq] {
        font-size: 2rem;
        margin-bottom: 1rem !important;
    }

    .hero-content-block p[b-ua3u3melvq] {
        font-size: 0.95rem;
        margin-bottom: 1.5rem !important;
    }

    .hero-section .btn[b-ua3u3melvq] {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-logo-img[b-ua3u3melvq] {
        max-width: 150px;
    }

    .hero-logo-block[b-ua3u3melvq] {
        display: none !important;
    }
}

@media (max-width: 575px) {
    .carousel[b-ua3u3melvq] {
        min-height: 600px;
    }

    .hero-content-block h1[b-ua3u3melvq] {
        font-size: 1.75rem;
    }

    .hero-content-block p[b-ua3u3melvq] {
        font-size: 0.9rem;
    }

    .hero-section .btn[b-ua3u3melvq] {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .d-flex.gap-3[b-ua3u3melvq] {
        flex-direction: column !important;
        gap: 0 !important;
    }
}
/* _content/ClubTournamentsBlazorApp/Components/Pages/Landing/PricingSection.razor.rz.scp.css */
/* ===== PRICING SECTION ===== */
.pricing-section[b-cxczikp9zi] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

    .pricing-section[b-cxczikp9zi]::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(25, 197, 155, 0.1) 0%, transparent 70%);
        border-radius: 50%;
    }

    .pricing-section[b-cxczikp9zi]::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(25, 197, 155, 0.08) 0%, transparent 70%);
        border-radius: 50%;
    }

/* Section Badge */
.section-badge[b-cxczikp9zi] {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #19c59b 0%, #15a582 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(25, 197, 155, 0.3);
}

/* Progress Line */
.progress-line[b-cxczikp9zi] {
    position: absolute;
    top: 120px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: linear-gradient(90deg, #19c59b 0%, #15a582 50%, #19c59b 100%);
    z-index: 0;
    opacity: 0.3;
}

    .progress-line[b-cxczikp9zi]::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, #19c59b 0%, #15a582 100%);
        transform: translateY(-50%);
        animation: progressAnimation-b-cxczikp9zi 3s ease-in-out infinite;
    }

@keyframes progressAnimation-b-cxczikp9zi {
    0% {
        width: 0;
    }

    50% {
        width: 100%;
    }

    100% {
        width: 0;
    }
}

/* Pricing Card */
.pricing-card[b-cxczikp9zi] {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .pricing-card:hover[b-cxczikp9zi] {
        transform: translateY(-10px);
        box-shadow: 0 12px 40px rgba(25, 197, 155, 0.2);
    }

/* Highlighted middle card */
.pricing-card-highlighted[b-cxczikp9zi] {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf9 100%);
    border: 2px solid rgba(25, 197, 155, 0.2);
    transform: scale(1.05);
}

    .pricing-card-highlighted:hover[b-cxczikp9zi] {
        transform: scale(1.05) translateY(-10px);
    }

/* Popular Badge for Pricing */
.popular-badge[b-cxczikp9zi] {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .popular-badge i[b-cxczikp9zi] {
        font-size: 0.7rem;
    }

/* Pulse Animation */
.step-pulse[b-cxczikp9zi] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: rgba(25, 197, 155, 0.4);
    animation: pulse-b-cxczikp9zi 2s ease-out infinite;
}

@keyframes pulse-b-cxczikp9zi {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Pricing Header */
.pricing-header[b-cxczikp9zi] {
    margin-bottom: 1.5rem;
}

.pricing-icon-circle[b-cxczikp9zi] {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #19c59b 0%, #15a582 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 4px 15px rgba(25, 197, 155, 0.4);
    animation: float-b-cxczikp9zi 3s ease-in-out infinite;
}

    .pricing-icon-circle i[b-cxczikp9zi] {
        font-size: 2rem;
        color: white;
        z-index: 2;
    }

.pricing-card:hover .pricing-icon-circle[b-cxczikp9zi] {
    transform: rotate(360deg) scale(1.1);
}

@keyframes float-b-cxczikp9zi {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Pricing Badge */
.pricing-badge[b-cxczikp9zi] {
    text-align: center;
    margin-bottom: 1rem;
}

.badge-text[b-cxczikp9zi] {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, #e6fcf5 0%, #d1fae5 100%);
    color: #19c59b;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pricing Content */
.pricing-content[b-cxczikp9zi] {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-title[b-cxczikp9zi] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

/* Pricing Price */
.pricing-price[b-cxczikp9zi] {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency[b-cxczikp9zi] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #6b7280;
}

.amount[b-cxczikp9zi] {
    font-size: 4rem;
    font-weight: 800;
    color: #19c59b;
    line-height: 1;
    margin: 0 0.25rem;
}

.period[b-cxczikp9zi] {
    font-size: 1rem;
    color: #9ca3af;
    font-weight: 500;
}

.pricing-description[b-cxczikp9zi] {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2rem;
    min-height: 48px;
}

/* Pricing Features List */
.pricing-features[b-cxczikp9zi] {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
    flex: 1;
}

    .pricing-features li[b-cxczikp9zi] {
        padding: 0.75rem 0;
        color: #4b5563;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        border-bottom: 1px solid #f3f4f6;
    }

        .pricing-features li:last-child[b-cxczikp9zi] {
            border-bottom: none;
        }

        .pricing-features li i[b-cxczikp9zi] {
            color: #19c59b;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .pricing-features li.text-muted i[b-cxczikp9zi] {
            color: #d1d5db;
        }

        .pricing-features li strong[b-cxczikp9zi] {
            color: #19c59b;
        }

/* Pricing Button */
.pricing-btn[b-cxczikp9zi] {
    margin-top: auto;
    border-radius: 50px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .pricing-btn:hover[b-cxczikp9zi] {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(25, 197, 155, 0.3);
    }

/* Pricing Footer */
.pricing-footer[b-cxczikp9zi] {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pricing-feature-item[b-cxczikp9zi] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.9rem;
}

    .pricing-feature-item i[b-cxczikp9zi] {
        font-size: 1.1rem;
    }

/* Responsive Pricing */
@media (max-width: 992px) {
    .pricing-card-highlighted[b-cxczikp9zi] {
        transform: scale(1);
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .amount[b-cxczikp9zi] {
        font-size: 3rem;
    }

    .pricing-title[b-cxczikp9zi] {
        font-size: 1.5rem;
    }

    .pricing-icon-circle[b-cxczikp9zi] {
        width: 70px;
        height: 70px;
    }

        .pricing-icon-circle i[b-cxczikp9zi] {
            font-size: 1.75rem;
        }

    .popular-badge[b-cxczikp9zi] {
        font-size: 0.7rem;
        padding: 5px 15px;
    }
}

@media (max-width: 576px) {
    .pricing-footer[b-cxczikp9zi] {
        padding: 1.5rem;
    }

    .pricing-feature-item[b-cxczikp9zi] {
        font-size: 0.85rem;
    }
}
/* _content/ClubTournamentsBlazorApp/Components/Pages/Matches.razor.rz.scp.css */
/* ============================================
   MATCHES - PAGE SPECIFIC STYLES
   Shared styles moved to wwwroot/shared-components.css
   ============================================ */

.card[b-z3buduhm5u] {
	border: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge[b-z3buduhm5u] {
	font-weight: 600;
	padding: 0.5rem 0.75rem;
}

	.badge.bg-primary-first[b-z3buduhm5u] {
		background-color: #EFBF04 !important;
		color: #fff;
	}

	.badge.bg-primary[b-z3buduhm5u] {
		background-color: rgb(135 137 139) !important;
		color: #fff;
	}

	.badge.bg-secondary[b-z3buduhm5u] {
		background-color: var(--secondary-light) !important;
	}

	.badge.bg-info[b-z3buduhm5u] {
		background-color: var(--primary-color) !important;
		color: var(--secondary-color);
	}

	.badge.bg-success[b-z3buduhm5u] {
		background-color: #28a745 !important;
		color: white;
	}

	.badge.bg-danger[b-z3buduhm5u] {
		background-color: #dc3545 !important;
		color: white;
	}

	.badge.bg-warning[b-z3buduhm5u] {
		background-color: #FFA500;
		color: var(--secondary-color);
	}

	.badge.bg-light[b-z3buduhm5u] {
		background-color: #E8F5F0 !important;
		color: var(--secondary-color);
		border: 1px solid var(--primary-color);
	}

.form-control:focus[b-z3buduhm5u], .form-select:focus[b-z3buduhm5u] {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 0.2rem rgba(29, 209, 161, 0.25);
}

.form-control[b-z3buduhm5u], .form-select[b-z3buduhm5u] {
	border-color: #ddd;
}

.list-group-item[b-z3buduhm5u] {
	border-color: #E8F5F0;
	border-left: 3px solid transparent;
	transition: all 0.3s ease;
}

	.list-group-item:hover[b-z3buduhm5u] {
		border-left-color: var(--primary-color);
		background-color: #F0F9F7;
	}

.text-muted[b-z3buduhm5u] {
	color: #6c757d !important;
}

h1[b-z3buduhm5u], h2[b-z3buduhm5u], h3[b-z3buduhm5u], h4[b-z3buduhm5u], h5[b-z3buduhm5u], h6[b-z3buduhm5u] {
	color: var(--secondary-color);
}

.btn:focus[b-z3buduhm5u], .btn:active:focus[b-z3buduhm5u], .btn-link.nav-link:focus[b-z3buduhm5u], .form-control:focus[b-z3buduhm5u], .form-check-input:focus[b-z3buduhm5u] {
	outline: 0;
	box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--primary-color);
}

/* Page-specific tab adjustments */
.nav-tabs .nav-link[b-z3buduhm5u] {
	white-space: nowrap;
}

.nav-tabs .nav-link .badge[b-z3buduhm5u] {
	vertical-align: super;
	position: relative;
	top: -2px;
}

.tab-pane[b-z3buduhm5u] {
	color: black;
}

.timeline[b-z3buduhm5u] {
	position: relative;
	padding-left: 26px;
}

	/* Timeline vertical line */
	.timeline[b-z3buduhm5u]::before {
		content: '';
		position: absolute;
		left: 9px;
		top: 0;
		bottom: 0;
		width: 2px;
		background: linear-gradient(to bottom, var(--primary-color), #e0e0e0);
	}

.timeline-item[b-z3buduhm5u] {
	position: relative;
	margin-bottom: 1.5rem;
}

/* Timeline Marker */
.timeline-marker[b-z3buduhm5u] {
	position: absolute;
	left: -26px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background: white;
	border: 2px solid var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

	.timeline-marker i[b-z3buduhm5u] {
		font-size: 8px;
		color: var(--primary-color);
	}

.timeline-item-urgent .timeline-marker[b-z3buduhm5u] {
	background: #ffc107;
	box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
	animation: pulse-b-z3buduhm5u 2s infinite;
}

	.timeline-item-urgent .timeline-marker i[b-z3buduhm5u] {
		font-size: 0.7rem;
	}

@keyframes pulse-b-z3buduhm5u {
	0%, 100% {
		box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
	}

	50% {
		box-shadow: 0 0 0 6px rgba(255, 193, 7, 0.1);
	}
}

.timeline-content[b-z3buduhm5u] {
	margin-left: 0.5rem;
}

.timeline-card[b-z3buduhm5u] {
	transition: all 0.3s ease;
}

	.timeline-card:hover[b-z3buduhm5u] {
		transform: translateX(5px);
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	}

.border-warning[b-z3buduhm5u] {
	border-left: 4px solid #ffc107 !important;
}

.match-versus[b-z3buduhm5u] {
	position: relative;
}

.countdown-timer[b-z3buduhm5u] {
	font-size: 0.9rem;
}

/* Pagination styles moved to shared-components.css */

/* Responsive Design */
@media (max-width: 575.98px) {
	.nav-tabs .nav-link[b-z3buduhm5u] {
		padding: 0.5rem 0.5rem;
		font-size: 0.875rem;
	}

	.nav-tabs-compact .nav-link[b-z3buduhm5u] {
		padding: 0.4rem 0.5rem;
		font-size: 0.85rem;
	}

	.nav-tabs .nav-link i[b-z3buduhm5u] {
			font-size: 0.85rem;
		}

	.timeline[b-z3buduhm5u] {
		padding-left: 2rem;
	}

		.timeline[b-z3buduhm5u]::before {
			left: 0.5rem;
		}

	.timeline-marker[b-z3buduhm5u] {
		left: -2rem;
		width: 1rem;
		height: 1rem;
		top: 50%;
	}

		.timeline-marker i[b-z3buduhm5u] {
			font-size: 0.5rem;
		}

	.timeline-content[b-z3buduhm5u] {
		margin-left: 0.5rem;
	}
}

/* Desktop: Show both sections side by side */
@media (min-width: 992px) {
	.tab-content-wrapper[b-z3buduhm5u] {
		display: flex;
		width: 100%;
	}
}

/* Statistics Cards styles moved to shared-components.css */
/* Minor page-specific overrides kept below if needed */


/* _content/ClubTournamentsBlazorApp/Components/Pages/MyEvents.razor.rz.scp.css */
/* ============================================
   MY EVENTS - PAGE SPECIFIC STYLES
   Shared styles moved to wwwroot/shared-components.css
   ============================================ */

/* Page background */
.main-content-body[b-itcczg72l4] {
	background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

/* _content/ClubTournamentsBlazorApp/Components/Pages/Privacy.razor.rz.scp.css */
/* ============================================
   TERMS AND CONDITIONS PAGE STYLES
   ============================================ */

/* Fixed Background */
.terms-background[b-8hpdzpphq8] {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: -1;
	overflow: hidden;
}

.terms-bg-image[b-8hpdzpphq8] {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Scrollable Content */
.terms-page-content[b-8hpdzpphq8] {
	position: relative;
	z-index: 2;
	min-height: 100vh;
}

	/* Card with enhanced contrast */
	.terms-page-content .card[b-8hpdzpphq8] {
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
	}

/* Terms Content Container */
.terms-content[b-8hpdzpphq8] {
	color: #374151;
	line-height: 1.8;
}

/* Section Styling */
.terms-section[b-8hpdzpphq8] {
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #e5e7eb;
}

	.terms-section:last-child[b-8hpdzpphq8] {
		border-bottom: none;
		margin-bottom: 0;
		padding-bottom: 0;
	}

/* Section Title */
.section-title[b-8hpdzpphq8] {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.section-number[b-8hpdzpphq8] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg, #19c59b 0%, #15a582 100%);
	color: white;
	border-radius: 12px;
	font-size: 1.25rem;
	font-weight: 800;
	box-shadow: 0 4px 12px rgba(25, 197, 155, 0.25);
	flex-shrink: 0;
}

/* Paragraph Styling */
.terms-content p[b-8hpdzpphq8] {
	margin-bottom: 1rem;
	color: #4b5563;
}

/* List Styling */
.terms-list[b-8hpdzpphq8] {
	list-style: circle;
	padding-left: 2rem;
	margin-bottom: 0.5rem;
}

	.terms-list li[b-8hpdzpphq8] {
		position: relative;
		padding-left: 0.5rem;
		margin-bottom: 0.5rem;
		color: #4b5563;
	}


/* Contact Info Box */
.contact-info-box[b-8hpdzpphq8] {
	background: linear-gradient(135deg, #f0fdf9 0%, #e6fcf5 100%);
	border-left: 4px solid #19c59b;
	padding: 1.5rem;
	border-radius: 8px;
	margin-top: 1rem;
}

	.contact-info-box p[b-8hpdzpphq8] {
		margin-bottom: 0.5rem;
	}

	.contact-info-box strong[b-8hpdzpphq8] {
		color: #1f2937;
	}

/* Alert Styling Override */
.alert[b-8hpdzpphq8] {
	border-radius: 12px;
	border: none;
	padding: 1rem 1.25rem;
}

.alert-info[b-8hpdzpphq8] {
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
	color: #1e40af;
}

/* Responsive Design */
@media (max-width: 768px) {

	.section-title[b-8hpdzpphq8] {
		font-size: 1.25rem;
		gap: 0.5rem;
	}

	.section-number[b-8hpdzpphq8] {
		width: 36px;
		height: 36px;
		font-size: 1rem;
		border-radius: 10px;
	}

	.terms-list li[b-8hpdzpphq8] {
		padding-left: 1.5rem;
		font-size: 0.9rem;
	}

		.terms-list li[b-8hpdzpphq8]::before {
			font-size: 0.75rem;
		}

	.contact-info-box[b-8hpdzpphq8] {
		padding: 1rem;
		font-size: 0.9rem;
	}
}

@media (max-width: 576px) {

	.terms-page-content .container[b-8hpdzpphq8] {
		padding: 1rem;
	}

	.terms-page-content .card-body[b-8hpdzpphq8] {
		padding: 1.5rem !important;
	}
}

/* Smooth Scrolling for Anchor Links */
html[b-8hpdzpphq8] {
	scroll-behavior: smooth;
}

/* Card Enhancement */
.card[b-8hpdzpphq8] {
	transition: all 0.3s ease;
}

/* Button Hover Effect */
.btn-outline-primary[b-8hpdzpphq8] {
	transition: all 0.3s ease;
}

	.btn-outline-primary:hover[b-8hpdzpphq8] {
		transform: translateY(-2px);
		box-shadow: 0 4px 12px rgba(25, 197, 155, 0.3);
	}
/* _content/ClubTournamentsBlazorApp/Components/Pages/Search.razor.rz.scp.css */
/* ============================================
   SEARCH - PAGE SPECIFIC STYLES
   Shared styles moved to wwwroot/shared-components.css
   ============================================ */

.container[b-q1dzuv07vy] {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Search Input Styling */
.input-group[b-q1dzuv07vy] {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    overflow: hidden;
}

.input-group .form-control[b-q1dzuv07vy] {
    border: none;
    border-right: 1px solid #dee2e6;
}

    .input-group .form-control:focus[b-q1dzuv07vy] {
        border-color: var(--primary-color);
        box-shadow: none;
    }

.input-group .btn[b-q1dzuv07vy] {
    border: none;
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .input-group .btn:hover[b-q1dzuv07vy] {
        background-color: #1abc9c;
        transform: translateY(-1px);
    }

/* Pagination styles moved to shared-components.css */

/* No Results styles moved to shared-components.css */

/* Tournament Count Text */
.text-muted.small[b-q1dzuv07vy] {
    font-size: 0.875rem;
    color: #6c757d !important;
}

/* Responsive Adjustments */
@media (max-width: 575.98px) {
    .input-group .btn span[b-q1dzuv07vy] {
        display: none;
    }

    .input-group .btn i[b-q1dzuv07vy] {
        margin: 0;
    }
}

/* Card Grid Spacing */
.row.g-4[b-q1dzuv07vy] {
    margin-top: 1rem;
}

/* Animation styles moved to shared-components.css */

/* _content/ClubTournamentsBlazorApp/Components/Pages/TermsAndConditions.razor.rz.scp.css */
/* ============================================
   TERMS AND CONDITIONS PAGE STYLES
   ============================================ */

/* Fixed Background */
.terms-background[b-zamyyw3u3j] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.terms-bg-image[b-zamyyw3u3j] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Scrollable Content */
.terms-page-content[b-zamyyw3u3j] {
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

/* Card with enhanced contrast */
.terms-page-content .card[b-zamyyw3u3j] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Terms Content Container */
.terms-content[b-zamyyw3u3j] {
    color: #374151;
    line-height: 1.8;
}

/* Section Styling */
.terms-section[b-zamyyw3u3j] {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.terms-section:last-child[b-zamyyw3u3j] {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Section Title */
.section-title[b-zamyyw3u3j] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-number[b-zamyyw3u3j] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #19c59b 0%, #15a582 100%);
    color: white;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(25, 197, 155, 0.25);
    flex-shrink: 0;
}

/* Paragraph Styling */
.terms-content p[b-zamyyw3u3j] {
    margin-bottom: 1rem;
    color: #4b5563;
}

/* List Styling */
.terms-list[b-zamyyw3u3j] {
    list-style: circle;
    padding-left: 2rem;
    margin-bottom: 0.5rem;
}

.terms-list li[b-zamyyw3u3j] {
    position: relative;
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
    color: #4b5563;
}


/* Contact Info Box */
.contact-info-box[b-zamyyw3u3j] {
    background: linear-gradient(135deg, #f0fdf9 0%, #e6fcf5 100%);
    border-left: 4px solid #19c59b;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-info-box p[b-zamyyw3u3j] {
    margin-bottom: 0.5rem;
}

.contact-info-box strong[b-zamyyw3u3j] {
    color: #1f2937;
}

/* Alert Styling Override */
.alert[b-zamyyw3u3j] {
    border-radius: 12px;
    border: none;
    padding: 1rem 1.25rem;
}

.alert-info[b-zamyyw3u3j] {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #1e40af;
}

/* Responsive Design */
@media (max-width: 768px) {

    .section-title[b-zamyyw3u3j] {
        font-size: 1.25rem;
        gap: 0.5rem;
    }

    .section-number[b-zamyyw3u3j] {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .terms-list li[b-zamyyw3u3j] {
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }

    .terms-list li[b-zamyyw3u3j]::before {
        font-size: 0.75rem;
    }

    .contact-info-box[b-zamyyw3u3j] {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {

    .terms-page-content .container[b-zamyyw3u3j] {
        padding: 1rem;
    }

    .terms-page-content .card-body[b-zamyyw3u3j] {
        padding: 1.5rem !important;
    }
}

/* Smooth Scrolling for Anchor Links */
html[b-zamyyw3u3j] {
    scroll-behavior: smooth;
}

/* Card Enhancement */
.card[b-zamyyw3u3j] {
    transition: all 0.3s ease;
}

/* Button Hover Effect */
.btn-outline-primary[b-zamyyw3u3j] {
    transition: all 0.3s ease;
}

.btn-outline-primary:hover[b-zamyyw3u3j] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 197, 155, 0.3);
}
/* _content/ClubTournamentsBlazorApp/Components/Rankings/RankingComponent.razor.rz.scp.css */
/* ===== RANKING CONTAINER ===== */
.ranking-container[b-l0ugkl3f3r] {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.06);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
}

/* ===== RANKING HEADER ===== */
.ranking-header[b-l0ugkl3f3r] {
	background: var(--primary-color);
	padding: 16px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 3px solid rgba(0, 0, 0, 0.1);
}

.ranking-header-left[b-l0ugkl3f3r] {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ranking-title[b-l0ugkl3f3r] {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 700;
	color: #ffffff;
	display: flex;
	align-items: center;
	gap: 10px;
	letter-spacing: 0.3px;
}

	.ranking-title i[b-l0ugkl3f3r] {
		font-size: 1.2rem;
		color: #ffd700;
		filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
	}

.ranking-count[b-l0ugkl3f3r] {
	background: rgba(255, 255, 255, 0.2);
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 0.75rem;
	font-weight: 600;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.refresh-btn[b-l0ugkl3f3r] {
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #19c59b;
	padding: 6px 12px;
	border-radius: 8px;
	transition: all 0.2s ease;
	font-weight: 600;
}

	.refresh-btn:hover:not(:disabled)[b-l0ugkl3f3r] {
		background: #ffffff;
		transform: scale(1.05);
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	}

	.refresh-btn:disabled[b-l0ugkl3f3r] {
		opacity: 0.7;
		cursor: not-allowed;
	}

	.refresh-btn i[b-l0ugkl3f3r] {
		font-size: 0.9rem;
	}

/* ===== SEARCH ===== */
.ranking-search[b-l0ugkl3f3r] {
	padding: 16px 20px;
	background: #fafafa;
	border-bottom: 1px solid #e5e7eb;
}

.search-input-wrapper[b-l0ugkl3f3r] {
	position: relative;
}

.search-icon[b-l0ugkl3f3r] {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: #9ca3af;
	font-size: 0.9rem;
	pointer-events: none;
}

.search-input[b-l0ugkl3f3r] {
	padding-left: 40px;
	border: 2px solid #e5e7eb;
	border-radius: 10px;
	font-size: 0.9rem;
	transition: all 0.2s ease;
}

	.search-input:focus[b-l0ugkl3f3r] {
		border-color: #19c59b;
		box-shadow: 0 0 0 3px rgba(25, 197, 155, 0.1);
	}

	.search-input[b-l0ugkl3f3r]::placeholder {
		color: #9ca3af;
	}

/* ===== RANKING BODY ===== */
.ranking-body[b-l0ugkl3f3r] {
	flex: 1;
	overflow-y: auto;
	padding: 8px;
}

.ranking-list[b-l0ugkl3f3r] {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* ===== RANKING ITEM ===== */
.ranking-item[b-l0ugkl3f3r] {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: #ffffff;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	transition: all 0.25s ease;
	position: relative;
}

	.ranking-item:hover[b-l0ugkl3f3r] {
		border-color: #19c59b;
		box-shadow: 0 4px 12px rgba(25, 197, 155, 0.15);
		transform: translateX(4px);
	}

	.ranking-item.rank-first[b-l0ugkl3f3r] {
		background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 100%);
		border-color: #ffd700;
		box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
	}

		.ranking-item.rank-first:hover[b-l0ugkl3f3r] {
			box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
		}

	.ranking-item.rank-second[b-l0ugkl3f3r] {
		background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
		border-color: #c0c0c0;
	}

	.ranking-item.rank-third[b-l0ugkl3f3r] {
		background: linear-gradient(135deg, #fff5f0 0%, #fff8f5 100%);
		border-color: #cd7f32;
	}

/* ===== CURRENT USER HIGHLIGHT ===== */
.ranking-item.current-user[b-l0ugkl3f3r] {
	background: linear-gradient(135deg, #f0fdf9 0%, #f7fefb 100%);
	border-color: #19c59b;
	border-width: 2px;
	box-shadow: 0 2px 8px rgba(25, 197, 155, 0.15);
}

	.ranking-item.current-user:hover[b-l0ugkl3f3r] {
		box-shadow: 0 4px 16px rgba(25, 197, 155, 0.25);
	}

	.ranking-item.current-user[b-l0ugkl3f3r]::before {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		width: 4px;
		background: linear-gradient(180deg, #19c59b 0%, #15a582 100%);
		border-radius: 12px 0 0 12px;
	}

/* Current user overrides for medal positions */
.ranking-item.current-user.rank-first[b-l0ugkl3f3r] {
	background: linear-gradient(135deg, #fff9e6 0%, #f0fdf9 50%, #fffbf0 100%);
	border-color: #19c59b;
}

.ranking-item.current-user.rank-second[b-l0ugkl3f3r],
.ranking-item.current-user.rank-third[b-l0ugkl3f3r] {
	border-color: #19c59b;
}

/* ===== POSITION BADGE ===== */
.ranking-position[b-l0ugkl3f3r] {
	flex-shrink: 0;
}

.position-badge[b-l0ugkl3f3r] {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2px;
	min-width: 40px;
	height: 40px;
	border-radius: 10px;
	font-weight: 800;
	font-size: 1rem;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	transition: all 0.2s ease;
}

	.position-badge i[b-l0ugkl3f3r] {
		font-size: 0.9rem;
	}

.badge-gold[b-l0ugkl3f3r] {
	background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
	color: #b8860b;
	border: 2px solid #ffa500;
}

	.badge-gold i[b-l0ugkl3f3r] {
		color: #b8860b;
	}

.badge-silver[b-l0ugkl3f3r] {
	background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
	color: #6b7280;
	border: 2px solid #9ca3af;
}

	.badge-silver i[b-l0ugkl3f3r] {
		color: #6b7280;
	}

.badge-bronze[b-l0ugkl3f3r] {
	background: linear-gradient(135deg, #cd7f32 0%, #e6a85c 100%);
	color: #8b4513;
	border: 2px solid #b8860b;
}

	.badge-bronze i[b-l0ugkl3f3r] {
		color: #8b4513;
	}

.badge-default[b-l0ugkl3f3r] {
	background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
	color: #4b5563;
	border: 2px solid #d1d5db;
}

.ranking-item:hover .position-badge[b-l0ugkl3f3r] {
	transform: scale(1.1);
}

/* ===== PLAYER INFO ===== */
.ranking-player[b-l0ugkl3f3r] {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
	min-width: 0;
}

.player-avatars[b-l0ugkl3f3r] {
	position: relative;
	flex-shrink: 0;
}

	.player-avatars.doubles[b-l0ugkl3f3r] {
		width: 56px;
	}

.player-avatar[b-l0ugkl3f3r] {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #ffffff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	transition: all 0.2s ease;
}

.avatar-overlay[b-l0ugkl3f3r] {
	position: absolute;
	left: 24px;
	top: 0;
	z-index: 1;
}

.ranking-item:hover .player-avatar[b-l0ugkl3f3r] {
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.player-info[b-l0ugkl3f3r] {
	flex: 1;
	min-width: 0;
}

.player-name[b-l0ugkl3f3r] {
	font-weight: 600;
	font-size: 0.95rem;
	color: #1f2937;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 2px;
}

.name-separator[b-l0ugkl3f3r] {
	font-weight: 400;
	color: #9ca3af;
	margin: 0 4px;
}

.player-club[b-l0ugkl3f3r] {
	font-size: 0.75rem;
	color: #6b7280;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* ===== STATS ===== */
.ranking-stats[b-l0ugkl3f3r] {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}

.stat-item[b-l0ugkl3f3r] {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
}

	.stat-item.points[b-l0ugkl3f3r] {
		background: linear-gradient(135deg, #19c59b 0%, #15a582 100%);
		padding: 8px 14px;
		border-radius: 10px;
		box-shadow: 0 2px 6px rgba(25, 197, 155, 0.3);
	}

		.stat-item.points .stat-value[b-l0ugkl3f3r] {
			font-size: 1.2rem;
			font-weight: 800;
			color: #ffffff;
			line-height: 1;
		}

		.stat-item.points .stat-label[b-l0ugkl3f3r] {
			font-size: 0.65rem;
			font-weight: 600;
			color: rgba(255, 255, 255, 0.8);
			text-transform: uppercase;
			letter-spacing: 0.5px;
		}

.stat-item.record[b-l0ugkl3f3r] {
	flex-direction: row;
	gap: 4px;
	font-weight: 700;
	font-size: 0.85rem;
}

.record-win[b-l0ugkl3f3r] {
	color: #10b981;
}

.record-draw[b-l0ugkl3f3r] {
	color: #6b7280;
}

.record-loss[b-l0ugkl3f3r] {
	color: #ef4444;
}

.record-separator[b-l0ugkl3f3r] {
	color: #d1d5db;
	font-weight: 400;
}

/* ===== CHALLENGE ACTIONS ===== */
.ranking-actions[b-l0ugkl3f3r] {
	flex-shrink: 0;
	margin-left: 8px;
}

.challenge-btn[b-l0ugkl3f3r] {
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	border: 2px solid #19c59b;
	color: #19c59b;
	padding: 6px 12px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.85rem;
	transition: all 0.25s ease;
	display: flex;
	align-items: center;
	gap: 6px;
	box-shadow: 0 2px 4px rgba(25, 197, 155, 0.1);
}

	.challenge-btn:hover[b-l0ugkl3f3r] {
		background: linear-gradient(135deg, #19c59b 0%, #15a582 100%);
		color: #ffffff;
		border-color: #15a582;
		transform: translateY(-2px);
		box-shadow: 0 4px 12px rgba(25, 197, 155, 0.3);
	}

	.challenge-btn:active[b-l0ugkl3f3r] {
		transform: translateY(0);
		box-shadow: 0 2px 6px rgba(25, 197, 155, 0.2);
	}

	.challenge-btn i[b-l0ugkl3f3r] {
		font-size: 1rem;
		animation: bolt-pulse-b-l0ugkl3f3r 2s ease-in-out infinite;
	}

	.challenge-btn:hover i[b-l0ugkl3f3r] {
		animation: none;
	}

@keyframes bolt-pulse-b-l0ugkl3f3r {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.7;
		transform: scale(1.1);
	}
}

/* ===== EMPTY STATE ===== */
.ranking-empty[b-l0ugkl3f3r] {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 48px 24px;
	text-align: center;
}

.empty-icon[b-l0ugkl3f3r] {
	font-size: 3rem;
	color: #d1d5db;
	margin-bottom: 16px;
	animation: pulse-b-l0ugkl3f3r 2s ease-in-out infinite;
}

.empty-title[b-l0ugkl3f3r] {
	font-size: 1.1rem;
	font-weight: 600;
	color: #4b5563;
	margin-bottom: 8px;
}

.empty-subtitle[b-l0ugkl3f3r] {
	font-size: 0.9rem;
	color: #9ca3af;
}

@keyframes pulse-b-l0ugkl3f3r {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

/* ===== FOOTER ===== */
.ranking-footer[b-l0ugkl3f3r] {
	padding: 12px 20px;
	background: #fafafa;
	border-top: 1px solid #e5e7eb;
	text-align: center;
}

	.ranking-footer small[b-l0ugkl3f3r] {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 4px;
		font-size: 0.75rem;
	}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
	.ranking-item[b-l0ugkl3f3r] {
		padding: 10px 12px;
		gap: 10px;
	}

	.position-badge[b-l0ugkl3f3r] {
		min-width: 42px;
		height: 42px;
		font-size: 1rem;
	}

	.player-avatar[b-l0ugkl3f3r] {
		width: 40px;
		height: 40px;
	}

	.player-avatars.doubles[b-l0ugkl3f3r] {
		width: 48px;
	}

	.avatar-overlay[b-l0ugkl3f3r] {
		left: 20px;
	}

	.player-name[b-l0ugkl3f3r] {
		font-size: 0.85rem;
	}

	.player-club[b-l0ugkl3f3r] {
		font-size: 0.7rem;
	}

	.stat-item.points[b-l0ugkl3f3r] {
		padding: 6px 10px;
	}

		.stat-item.points .stat-value[b-l0ugkl3f3r] {
			font-size: 1rem;
		}

	.stat-item.record[b-l0ugkl3f3r] {
		font-size: 0.75rem;
	}

	.ranking-count[b-l0ugkl3f3r] {
		font-size: 0.7rem;
		padding: 3px 8px;
	}

	.ranking-title[b-l0ugkl3f3r] {
		font-size: 1rem;
	}

		.ranking-title i[b-l0ugkl3f3r] {
			font-size: 1rem;
		}
}

@media (max-width: 576px) {
/*	.stat-item.record {
		display: none;
	}*/

	.ranking-stats[b-l0ugkl3f3r] {
		gap: 8px;
	}

	.challenge-btn span[b-l0ugkl3f3r] {
		display: none;
	}

	.challenge-btn[b-l0ugkl3f3r] {
		padding: 6px 10px;
	}
}
/* _content/ClubTournamentsBlazorApp/Components/Shared/AdminAlertContainer.razor.rz.scp.css */
.admin-alert-container[b-02bsl73ww1] {
    position: relative;
    z-index: 10;
    margin-bottom: 1rem;
    animation: slideDown-b-02bsl73ww1 0.3s ease-out;
}

@keyframes slideDown-b-02bsl73ww1 {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.admin-alert-dismissing[b-02bsl73ww1] {
    animation: slideUp-b-02bsl73ww1 0.3s ease-in forwards;
}

@keyframes slideUp-b-02bsl73ww1 {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-20px);
        opacity: 0;
    }
}

.admin-alert-container .alert[b-02bsl73ww1] {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.admin-alert-container .alert i[b-02bsl73ww1] {
    opacity: 0.8;
}

.admin-alert-container .progress[b-02bsl73ww1] {
    background-color: rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.admin-alert-container .progress-bar[b-02bsl73ww1] {
    background-color: rgba(255, 255, 255, 0.6);
}
/* _content/ClubTournamentsBlazorApp/Components/Shared/Breadcrumb.razor.rz.scp.css */
.breadcrumb[b-xxf20crsv0] {
    background-color: transparent;
    padding: 0.5rem 0;
    margin-bottom: 0;
    font-size: 0.875rem;
}

.breadcrumb-item + .breadcrumb-item[b-xxf20crsv0]::before {
    content: "/";
    color: #6c757d;
    padding: 0 0.5rem;
}

.breadcrumb-item a[b-xxf20crsv0] {
    color: var(--primary-color, #0d6efd);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover[b-xxf20crsv0] {
    color: var(--primary-dark, #0b5ed7);
    text-decoration: underline;
}

.breadcrumb-item.active[b-xxf20crsv0] {
    color: #6c757d;
}
/* _content/ClubTournamentsBlazorApp/Components/Shared/ConfirmDialog.razor.rz.scp.css */
/* ============================================
   CONFIRM DIALOG COMPONENT
   ============================================ */

.confirm-dialog-overlay[b-1uo372l7j7] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.2s ease-in-out;
}

.confirm-dialog-content[b-1uo372l7j7] {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp-b-1uo372l7j7 0.3s ease-out;
}

@keyframes slideUp-b-1uo372l7j7 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.confirm-dialog-header[b-1uo372l7j7] {
    padding: 1.25rem;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.confirm-dialog-title[b-1uo372l7j7] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.confirm-dialog-body[b-1uo372l7j7] {
    padding: 1.5rem 1.25rem;
    color: #495057;
}

.confirm-dialog-body p[b-1uo372l7j7] {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.confirm-dialog-body p:last-child[b-1uo372l7j7] {
    margin-bottom: 0;
}

.confirm-dialog-footer[b-1uo372l7j7] {
    padding: 1rem 1.25rem;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.confirm-dialog-footer .btn[b-1uo372l7j7] {
    min-width: 100px;
}

/* Close button styling */
.confirm-dialog-close[b-1uo372l7j7] {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: #6c757d;
    opacity: 0.5;
    cursor: pointer;
    padding: 0;
    width: 1.5rem;
    height: 1.5rem;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirm-dialog-close:hover[b-1uo372l7j7] {
    opacity: 1;
    color: #000;
}

.confirm-dialog-close span[b-1uo372l7j7] {
    display: block;
    line-height: 1;
}

/* Mobile responsive */
@media (max-width: 575.98px) {
    .confirm-dialog-content[b-1uo372l7j7] {
        width: 95%;
        max-width: none;
    }

    .confirm-dialog-header[b-1uo372l7j7],
    .confirm-dialog-body[b-1uo372l7j7],
    .confirm-dialog-footer[b-1uo372l7j7] {
        padding: 1rem;
    }

    .confirm-dialog-footer[b-1uo372l7j7] {
        flex-direction: column;
    }

    .confirm-dialog-footer .btn[b-1uo372l7j7] {
        width: 100%;
        min-width: auto;
    }
}
/* _content/ClubTournamentsBlazorApp/Components/Tournaments/CreateTournament.razor.rz.scp.css */
/*@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');*/

:root[b-o6f0vuu5qa] {
	--primary-color: #1DD1A1;
	--primary-dark: #16A085;
	--secondary-color: #0F1419;
	--secondary-light: #1A2332;
	--accent-color: #00D9A3;
}

html[b-o6f0vuu5qa], body[b-o6f0vuu5qa] {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	background-color: #f8f9fa;
}

a[b-o6f0vuu5qa], .btn-link[b-o6f0vuu5qa] {
	color: var(--primary-color);
	text-decoration: none;
}

	a:hover[b-o6f0vuu5qa], .btn-link:hover[b-o6f0vuu5qa] {
		color: var(--primary-dark);
		text-decoration: underline;
	}

.btn-primary[b-o6f0vuu5qa] {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: var(--secondary-color);
	font-weight: 600;
	transition: all 0.3s ease;
}

	.btn-primary:hover[b-o6f0vuu5qa] {
		background-color: var(--primary-dark);
		border-color: var(--primary-dark);
		color: var(--secondary-color);
		transform: translateY(-2px);
		box-shadow: 0 4px 12px rgba(29, 209, 161, 0.3);
	}

	.btn-primary:focus[b-o6f0vuu5qa], .btn-primary:active[b-o6f0vuu5qa] {
		background-color: var(--primary-dark);
		border-color: var(--primary-dark);
		box-shadow: 0 0 0 0.25rem rgba(29, 209, 161, 0.5);
	}


.card[b-o6f0vuu5qa] {
	border: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	border-top: 3px solid var(--primary-color);
	border-radius: 12px;
	overflow: hidden;
}

.card-title[b-o6f0vuu5qa] {
	color: var(--secondary-color);
	font-weight: 700;
}

.card-header[b-o6f0vuu5qa] {
	background: linear-gradient(135deg, #F0F9F7 0%, #ffffff 100%);
	border-bottom: 1px solid #E0E0E0;
}

.badge[b-o6f0vuu5qa] {
	font-weight: 600;
	padding: 0.5rem 0.75rem;
}


.form-control[b-o6f0vuu5qa], .form-select[b-o6f0vuu5qa] {
	border: 1.5px solid #ddd;
	border-radius: 8px;
	transition: all 0.3s ease;
	font-size: 1rem;
}

	.form-control:focus[b-o6f0vuu5qa], .form-select:focus[b-o6f0vuu5qa] {
		border-color: var(--primary-color);
		box-shadow: 0 0 0 0.2rem rgba(29, 209, 161, 0.25);
		border-width: 1.5px;
	}

.form-control-lg[b-o6f0vuu5qa], .form-select-lg[b-o6f0vuu5qa] {
	padding: 0.75rem 1rem;
	font-size: 1rem;
}

.form-label[b-o6f0vuu5qa] {
	color: var(--secondary-color);
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.form-check-input[b-o6f0vuu5qa] {
	width: 2.5rem;
	height: 1.5rem;
	border: 2px solid #ddd;
	cursor: pointer;
	transition: all 0.3s ease;
}

	.form-check-input:checked[b-o6f0vuu5qa] {
		background-color: var(--primary-color);
		border-color: var(--primary-color);
	}

	.form-check-input:focus[b-o6f0vuu5qa] {
		border-color: var(--primary-color);
		box-shadow: 0 0 0 0.25rem rgba(29, 209, 161, 0.25);
	}

.form-check-label[b-o6f0vuu5qa] {
	cursor: pointer;
	user-select: none;
}

.table-light[b-o6f0vuu5qa] {
	background-color: #F0F9F7;
}

	.table-light th[b-o6f0vuu5qa] {
		color: var(--secondary-color);
		font-weight: 700;
		border-bottom: 2px solid var(--primary-color);
	}

.list-group-item[b-o6f0vuu5qa] {
	border-color: #E8F5F0;
	border-left: 3px solid transparent;
	transition: all 0.3s ease;
}

	.list-group-item:hover[b-o6f0vuu5qa] {
		border-left-color: var(--primary-color);
		background-color: #F0F9F7;
	}

.table-responsive[b-o6f0vuu5qa] {
	border-radius: 0.375rem;
}

.alert-success[b-o6f0vuu5qa] {
	background-color: #E8F5F0;
	border-color: var(--primary-color);
	color: var(--secondary-color);
	border-radius: 8px;
}

.alert-danger[b-o6f0vuu5qa] {
	background-color: #FFE8E8;
	border-color: #dc3545;
	color: #721c24;
	border-radius: 8px;
}

.alert-success .alert-heading[b-o6f0vuu5qa] {
	color: var(--secondary-color);
}

.text-muted[b-o6f0vuu5qa] {
	color: #6c757d !important;
}

.table tbody tr:hover[b-o6f0vuu5qa] {
	background-color: #F0F9F7;
}

h1[b-o6f0vuu5qa], h2[b-o6f0vuu5qa], h3[b-o6f0vuu5qa], h4[b-o6f0vuu5qa], h5[b-o6f0vuu5qa], h6[b-o6f0vuu5qa] {
	color: var(--secondary-color);
}

.container[b-o6f0vuu5qa] {
	max-width: 1200px;
}

code[b-o6f0vuu5qa] {
	color: var(--primary-color);
	background-color: #F0F9F7;
	padding: 0.2rem 0.4rem;
	border-radius: 0.25rem;
}

.btn:focus[b-o6f0vuu5qa], .btn:active:focus[b-o6f0vuu5qa], .btn-link.nav-link:focus[b-o6f0vuu5qa], .form-control:focus[b-o6f0vuu5qa], .form-check-input:focus[b-o6f0vuu5qa] {
	outline: 0;
	box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--primary-color);
}

html[b-o6f0vuu5qa] {
	position: relative;
	min-height: 100%;
}

body[b-o6f0vuu5qa] {
	margin-bottom: 60px;
}

.fw-600[b-o6f0vuu5qa] {
	font-weight: 600;
}

.rounded-3[b-o6f0vuu5qa] {
	border-radius: 12px;
}

.rounded-2[b-o6f0vuu5qa] {
	border-radius: 8px;
}

/* Stepper styles */
.stepper[b-o6f0vuu5qa] {
	gap: 0.5rem;
	width: 100%;
	align-items: center;
}

.step-item .step-badge[b-o6f0vuu5qa] {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #e9f8f3;
	color: var(--primary-color);
	font-weight: 700;
	border: 2px solid rgba(0,0,0,0.06);
	box-shadow: 0 2px 6px rgba(16,24,40,0.06);
	transition: all 0.18s ease;
}

.step-badge.active[b-o6f0vuu5qa] {
	background: rgba(29,209,161,1);
	color: #000;
	box-shadow: 0 8px 20px rgba(29,209,161,0.18);
	transform: translateY(-4px);
}

.step-badge.done[b-o6f0vuu5qa] {
	background: rgba(29,209,161,0.7);
	color: white;
}

.step-connector[b-o6f0vuu5qa] {
	height: 6px;
	background: #e9f8f3;
	border-radius: 4px;
	align-self: center;
	transition: background 0.18s ease;
}

.step-label[b-o6f0vuu5qa] {
	color: #6c757d;
	font-weight: 600;
}

/* Validation message styling */
.invalid-feedback[b-o6f0vuu5qa], .text-danger[b-o6f0vuu5qa] {
	font-size: 0.875rem;
	font-weight: 500;
}

/* Section headers styling */
h5[b-o6f0vuu5qa] {
	font-weight: 700;
	letter-spacing: 0.5px;
}

/* Input placeholder styling */
.form-control[b-o6f0vuu5qa]::placeholder, .form-select[b-o6f0vuu5qa]::placeholder {
	color: #999;
	font-style: italic;
}

/* Smooth transitions */
*[b-o6f0vuu5qa] {
	transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

#uploadWithDragAndDrop[b-o6f0vuu5qa] {
	left: 0;
	--rz-upload-button-bar-background-color: transparent;
	--rz-upload-button-bar-padding: 0;
}

	#uploadWithDragAndDrop .rz-fileupload-buttonbar .rz-fileupload-choose[b-o6f0vuu5qa] {
		width: 100%;
		text-align: center;
		font-size: 16px;
		padding: 100px 0;
	}
/* _content/ClubTournamentsBlazorApp/Components/Tournaments/Dashboard/ActiveCourts.razor.rz.scp.css */
.debug-info[b-n48u0k0ugk] {
	background: rgba(255, 255, 255, 0.05);
	padding: 0.5rem;
	border-radius: 4px;
	border-left: 3px solid #3498db;
}

.active-courts-list[b-n48u0k0ugk] {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	height: 100%;
}

.court-card[b-n48u0k0ugk] {
	background: rgba(15, 20, 25, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	padding: 0.75rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

	.court-card.active[b-n48u0k0ugk] {
		border: 2px solid #1dd1a1;
		background: rgba(29, 209, 161, 0.08);
		box-shadow: 0 0 20px rgba(29, 209, 161, 0.2);
	}

		.court-card.active[b-n48u0k0ugk]::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			width: 5px;
			height: 100%;
			background: linear-gradient(180deg, #1dd1a1 0%, #16a085 100%);
		}

	.court-card.inactive[b-n48u0k0ugk] {
	opacity: 1; /* Changed from 0.6 to make it more visible */
	border-left: 3px solid rgba(255, 255, 255, 0.3);
	}

	.court-card:hover[b-n48u0k0ugk] {
		transform: translateY(-2px);
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	}

.court-header[b-n48u0k0ugk] {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.75rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.court-name[b-n48u0k0ugk] {
	font-size: 1.1rem;
	font-weight: 700;
	color: #fff;
	display: flex;
	align-items: center;
}

.court-status-badge[b-n48u0k0ugk] {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	color: white;
	padding: 0.25rem 0.6rem;
	border-radius: 20px;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 1px;
}

	.court-status-badge.live[b-n48u0k0ugk] {
		background: linear-gradient(135deg, #dc3545 0%, #dc3545 100%);
		animation: pulse-badge-b-n48u0k0ugk 2s ease-in-out infinite;
	}

	.court-status-badge.planned[b-n48u0k0ugk] {
		background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
	}

	.court-status-badge.queued[b-n48u0k0ugk] {
		background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	}

	.court-status-badge.available[b-n48u0k0ugk] {
		background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
	}

.status-indicator[b-n48u0k0ugk] {
	width: 8px;
	height: 8px;
	background: #fff;
	border-radius: 50%;
	animation: blink-b-n48u0k0ugk 1.5s ease-in-out infinite;
}

@keyframes blink-b-n48u0k0ugk {
	0%, 100% {
		opacity: 1;
	}

	50% {
		opacity: 0.3;
	}
}

@keyframes pulse-badge-b-n48u0k0ugk {
	0%, 100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}
}

.court-match[b-n48u0k0ugk] {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.match-teams[b-n48u0k0ugk] {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
}

.team[b-n48u0k0ugk] {
	flex: 1;
	min-width: 0;
}

.team-name[b-n48u0k0ugk] {
	display: block;
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.home-team[b-n48u0k0ugk] {
	text-align: right;
}

.away-team[b-n48u0k0ugk] {
	text-align: left;
}

.vs-indicator[b-n48u0k0ugk] {
	background: rgba(255, 255, 255, 0.1);
	color: #fff; /* Changed from rgba(255, 255, 255, 0.7) to pure white */
	padding: 0.25rem 0.5rem;
	border-radius: 6px;
	font-weight: 700;
	font-size: 0.7rem;
	letter-spacing: 1.5px;
	flex-shrink: 0;
}

.match-score[b-n48u0k0ugk] {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 6px;
}

	.match-score.starting[b-n48u0k0ugk] {
		color: #1dd1a1;
		font-size: 0.9rem;
		font-weight: 600;
		font-style: italic;
	}

.set-score[b-n48u0k0ugk] {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 4px;
	padding: 0.25rem 0.5rem;
}

.score[b-n48u0k0ugk] {
	font-size: 1.1rem;
	font-weight: 700;
	color: #fff; /* Changed from rgba(255, 255, 255, 0.8) to pure white */
	min-width: 20px;
	text-align: center;
}

	.score.winning[b-n48u0k0ugk] {
		color: #1dd1a1;
		font-size: 1.2rem;
	}

.separator[b-n48u0k0ugk] {
	color: rgba(255, 255, 255, 0.7); /* Changed from 0.4 to 0.7 for better visibility */
	font-size: 0.9rem;
}

.match-round[b-n48u0k0ugk] {
	display: flex;
	justify-content: center;
	margin-top: 0.25rem;
}

	.match-round .badge[b-n48u0k0ugk] {
		font-size: 0.65rem;
		padding: 0.2rem 0.4rem;
	}

/* Responsive */
@media (max-width: 768px) {
	.court-name[b-n48u0k0ugk] {
		font-size: 0.95rem;
	}

	.team-name[b-n48u0k0ugk] {
		font-size: 0.85rem;
	}

	.score[b-n48u0k0ugk] {
		font-size: 0.95rem;
	}

		.score.winning[b-n48u0k0ugk] {
			font-size: 1rem;
		}
}
/* _content/ClubTournamentsBlazorApp/Components/Tournaments/Dashboard/KnockoutDashboardView.razor.rz.scp.css */
.knockout-preview[b-xa8xtiysk8] {
	padding: 1rem;
}

.preview-header[b-xa8xtiysk8] {
	text-align: center;
	font-size: 1.3rem;
	font-weight: 600;
	color: #1dd1a1;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(29, 209, 161, 0.3);
}

.preview-info[b-xa8xtiysk8] {
	color: rgba(255, 255, 255, 0.9);
}

.matchup-preview[b-xa8xtiysk8] {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.preview-matchup[b-xa8xtiysk8] {
	background: rgba(15, 20, 25, 0.6);
	border: 2px solid rgba(29, 209, 161, 0.3);
	border-radius: 10px;
	padding: 1.25rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.matchup-label[b-xa8xtiysk8] {
	text-align: center;
	font-size: 0.9rem;
	font-weight: 700;
	color: #1dd1a1;
	margin-bottom: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	text-shadow: 0 0 10px rgba(29, 209, 161, 0.3);
}

.matchup-teams[b-xa8xtiysk8] {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.preview-team[b-xa8xtiysk8] {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.qualifier-badge[b-xa8xtiysk8] {
	padding: 0.25rem 0.75rem;
	border-radius: 6px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
}

	.qualifier-badge.winner[b-xa8xtiysk8] {
		background: linear-gradient(135deg, #1dd1a1 0%, #16a085 100%);
		color: white;
	}

	.qualifier-badge.runner-up[b-xa8xtiysk8] {
		background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
		color: white;
	}

.poule-name[b-xa8xtiysk8] {
	font-size: 1rem;
	color: #ffffff;
	font-weight: 600;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.vs-small[b-xa8xtiysk8] {
	font-size: 0.85rem;
	font-weight: 700;
	color: #ffffff;
	padding: 0.35rem 0.75rem;
	background: rgba(29, 209, 161, 0.2);
	border: 1px solid rgba(29, 209, 161, 0.4);
	border-radius: 6px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.bracket-flow[b-xa8xtiysk8] {
	text-align: center;
	padding: 1.25rem;
	background: rgba(29, 209, 161, 0.15);
	border-radius: 10px;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 600;
	border: 2px dashed rgba(29, 209, 161, 0.5);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Active Bracket Styles */
.knockout-active[b-xa8xtiysk8] {
	padding: 0.5rem;
}

/* Bracket Zoom Control for better page fit */
.bracket-zoom-sm[b-xa8xtiysk8] {
	zoom: 0.85;
	-moz-transform: scale(0.85);
	-moz-transform-origin: 0 0;
}

.bracket-zoom-md[b-xa8xtiysk8] {
	zoom: 0.9;
	-moz-transform: scale(0.9);
	-moz-transform-origin: 0 0;
}

.knockout-stats[b-xa8xtiysk8] {
	display: flex;
	justify-content: space-around;
	gap: 0.75rem;
	padding: 0.75rem 1rem;
	background: rgba(15, 20, 25, 0.8);
	border-radius: 8px;
	border: 1px solid rgba(29, 209, 161, 0.3);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	margin-bottom: 1rem;
}

.stat-item[b-xa8xtiysk8] {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex: 1;
	justify-content: center;
	padding: 0.4rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 6px;
}

	.stat-item > i[b-xa8xtiysk8] {
		font-size: 1.5rem;
		color: #1dd1a1;
		text-shadow: 0 0 8px rgba(29, 209, 161, 0.5);
	}

.stat-value[b-xa8xtiysk8] {
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
	line-height: 1;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.stat-label[b-xa8xtiysk8] {
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.8);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
}

/* Compact Bracket */
.compact-bracket[b-xa8xtiysk8] {
	overflow-x: auto;
	max-height: calc(100vh - 100px);
	overflow-y: hidden;
	position: relative;
	display: flex;
	justify-content: center; /* Center the bracket horizontally */
	padding: 0 2rem; /* Add padding for spacing */
}

/* Adjust height when footer stats are present */
.compact-bracket.with-footer-stats[b-xa8xtiysk8] {
	max-height: calc(100vh - 180px); /* Make room for footer (80px footer + margins) */
	padding-bottom: 1rem;
}

.bracket-section[b-xa8xtiysk8] {
	position: relative;
	display: inline-flex; /* Use inline-flex to fit content */
	justify-content: center;
}

/* Visual bracket connectors */
.bracket-round[b-xa8xtiysk8] {
	position: relative;
}

.bracket-round:not(:last-child) .bracket-match.played[b-xa8xtiysk8]::after {
	background: rgba(29, 209, 161, 0.6);
}

/* Sticky Footer Stats - Only for large brackets */
.knockout-stats-footer[b-xa8xtiysk8] {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(15, 20, 25, 0.95);
	border-top: 2px solid rgba(29, 209, 161, 0.4);
	padding: 0.4rem 1rem 0.5rem;
	z-index: 100;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
}

.stats-footer-row[b-xa8xtiysk8] {
	display: flex;
	justify-content: space-around;
	gap: 0.75rem;
	margin-bottom: 0.3rem;
}

.stats-footer-row:last-child[b-xa8xtiysk8] {
	margin-bottom: 0;
}

.stat-footer-item[b-xa8xtiysk8] {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	flex: 1;
	justify-content: center;
	padding: 0.25rem 0.4rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 4px;
	min-height: 2rem;
}

.stat-footer-item > i[b-xa8xtiysk8] {
	font-size: 1rem;
	color: #1dd1a1;
	text-shadow: 0 0 6px rgba(29, 209, 161, 0.5);
	flex-shrink: 0;
}

.stat-footer-value[b-xa8xtiysk8] {
	font-size: 0.85rem;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.1;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-footer-label[b-xa8xtiysk8] {
	font-size: 0.55rem;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
	letter-spacing: 0.3px;
	font-weight: 600;
	line-height: 1;
	margin-top: 0.1rem;
}

.bracket-rounds[b-xa8xtiysk8] {
	display: flex;
	gap: 1.5rem;
	min-width: max-content;
	padding: 0.5rem 0;
	align-items: flex-start; /* Align rounds to top */
}

.bracket-round[b-xa8xtiysk8] {
	display: flex;
	flex-direction: column;
	gap: 0;
	min-width: 180px;
	max-width: 200px;
}

.round-label[b-xa8xtiysk8] {
	text-align: center;
	font-size: 0.75rem;
	font-weight: 700;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 0.5rem 0.75rem;
	background: linear-gradient(135deg, rgba(29, 209, 161, 0.95) 0%, rgba(29, 209, 161, 0.85) 100%);
	border-radius: 6px;
	border: 1px solid rgba(29, 209, 161, 0.6);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
	white-space: nowrap;
	position: sticky;
	top: 0;
	z-index: 10;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	margin-bottom: 1rem;
	flex-shrink: 0; /* Prevent label from shrinking */
}

.round-matches[b-xa8xtiysk8] {
	display: flex;
	flex-direction: column;
	gap: 0;
	justify-content: center; /* Center matches vertically */
	flex: 1;
	min-height: 0;
}

/* Bracket alignment - create visual flow */
.bracket-round:nth-child(1) .round-matches[b-xa8xtiysk8] {
	gap: 1rem;
}

.bracket-round:nth-child(2) .round-matches[b-xa8xtiysk8] {
	gap: 6rem;
	padding-top: 2rem; /* Offset to align with middle of previous round */
}

.bracket-round:nth-child(3) .round-matches[b-xa8xtiysk8] {
	gap: 16rem;
	padding-top: 12rem; /* Larger offset for semi-finals */
}

.bracket-round:nth-child(4) .round-matches[b-xa8xtiysk8] {
	padding-top: 26rem; /* Center the final match */
}

.bracket-match[b-xa8xtiysk8] {
	background: rgba(15, 20, 25, 0.8);
	border: 1.5px solid rgba(29, 209, 161, 0.3);
	border-radius: 6px;
	overflow: hidden;
	transition: all 0.2s ease;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
	min-height: 0;
	margin-bottom: 0; /* Remove default margin */
}

	.bracket-match.played[b-xa8xtiysk8] {
		border-color: rgba(29, 209, 161, 0.6);
		background: rgba(15, 20, 25, 0.95);
	}

	.bracket-match:hover[b-xa8xtiysk8] {
		border-color: #1dd1a1;
		transform: scale(1.01);
		box-shadow: 0 2px 8px rgba(29, 209, 161, 0.3);
		z-index: 5;
	}

/* Add spacing between matches in first round only */
.bracket-round:nth-child(1) .bracket-match:not(:last-child)[b-xa8xtiysk8] {
	margin-bottom: 1rem;
}

.bracket-round:nth-child(2) .bracket-match:not(:last-child)[b-xa8xtiysk8] {
	margin-bottom: 3rem;
}

.bracket-round:nth-child(3) .bracket-match:not(:last-child)[b-xa8xtiysk8] {
	margin-bottom: 7rem;
}

.bracket-team[b-xa8xtiysk8] {
	padding: 0.4rem 0.6rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.4rem;
	border-bottom: 1px solid rgba(29, 209, 161, 0.15);
	background: rgba(26, 35, 50, 0.5);
	min-height: 2rem;
}

	.bracket-team:last-child[b-xa8xtiysk8] {
		border-bottom: none;
	}

	.bracket-team.winner[b-xa8xtiysk8] {
		background: rgba(29, 209, 161, 0.2);
		border-left: 3px solid #1dd1a1;
	}

	.bracket-team .team-name[b-xa8xtiysk8] {
		font-size: 0.85rem;
		color: #ffffff;
		font-weight: 600;
		white-space: nowrap;
		text-overflow: ellipsis;
		text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
		flex: 1;
		min-width: 0;
		line-height: 1.2;
	}

	.bracket-team.winner .team-name[b-xa8xtiysk8] {
		color: #1dd1a1;
		font-weight: 600;
		font-size: 1rem;
		text-shadow: 0 0 8px rgba(29, 209, 161, 0.5);
	}

.tbd-text[b-xa8xtiysk8] {
	color: rgba(255, 255, 255, 0.4);
	font-style: italic;
	font-weight: 400;
}

.champion-display[b-xa8xtiysk8] {
    align-items: center;
    text-align: center;
    display: block;
    height: 300px;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 12px;
    animation: glow-b-xa8xtiysk8 2s ease-in-out infinite;
}

@keyframes glow-b-xa8xtiysk8 {
	0%, 100% {
		box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
	}

	50% {
		box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
	}
}

.champion-crown[b-xa8xtiysk8] {
	font-size: 3rem;
	color: #ffd700;
	margin-bottom: 1rem;
	animation: bounce-b-xa8xtiysk8 2s ease-in-out infinite;
}

@keyframes bounce-b-xa8xtiysk8 {
	0%, 100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

.champion-name[b-xa8xtiysk8] {
	font-size: 2rem;
	font-weight: 700;
	color: #ffd700;
	margin-bottom: 0.5rem;
	text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

.champion-title[b-xa8xtiysk8] {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
	letter-spacing: 3px;
}

/* Responsive */
@media (min-width: 1400px) {
	/* Larger screens - allow more width for brackets */
	.bracket-round[b-xa8xtiysk8] {
		min-width: 22%;
		max-width: 220px;
		padding: 0px;
	}

	.bracket-team .team-name[b-xa8xtiysk8] {
		font-size: 1rem;
	}

	.round-label[b-xa8xtiysk8] {
		font-size: 0.8rem;
	}

	/* Better spacing for larger screens */
	.bracket-round:nth-child(2) .round-matches[b-xa8xtiysk8] {
		padding-top: 5rem;
	}

	.bracket-round:nth-child(3) .round-matches[b-xa8xtiysk8] {
		padding-top: 12rem;
	}

	.bracket-round:nth-child(4) .round-matches[b-xa8xtiysk8] {
		padding-top: 26rem;
	}
}

@media (max-width: 768px) {
	.knockout-stats[b-xa8xtiysk8] {
		flex-direction: column;
	}

	.stat-value[b-xa8xtiysk8] {
		font-size: 1.2rem;
	}

	.compact-bracket[b-xa8xtiysk8] {
		justify-content: flex-start; /* Left align on mobile for easier scrolling */
		padding: 0 0.5rem;
	}

	.compact-bracket.with-footer-stats[b-xa8xtiysk8] {
		max-height: calc(100vh - 150px); /* Smaller footer on mobile */
	}

	.bracket-rounds[b-xa8xtiysk8] {
		gap: 1rem;
		align-items: flex-start; /* Keep top alignment on mobile */
	}

	.bracket-round[b-xa8xtiysk8] {
		min-width: 160px;
	}

	/* Remove complex alignment on mobile */
	.bracket-round:nth-child(2) .round-matches[b-xa8xtiysk8],
	.bracket-round:nth-child(3) .round-matches[b-xa8xtiysk8],
	.bracket-round:nth-child(4) .round-matches[b-xa8xtiysk8] {
		padding-top: 0;
		gap: 1rem;
	}

	.bracket-round:nth-child(2) .bracket-match:not(:last-child)[b-xa8xtiysk8],
	.bracket-round:nth-child(3) .bracket-match:not(:last-child)[b-xa8xtiysk8] {
		margin-bottom: 1rem;
	}

	.champion-name[b-xa8xtiysk8] {
		font-size: 1.5rem;
	}
}
/* _content/ClubTournamentsBlazorApp/Components/Tournaments/Dashboard/LivePouleRankings.razor.rz.scp.css */
.poules-multi-row[b-3m7vp2hfk1] {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: visible;
}

.poules-multi-row .row[b-3m7vp2hfk1] {
	flex: 1;
	min-height: 0;
}

	.poules-multi-row .row:last-child[b-3m7vp2hfk1] {
		margin-bottom: 0 !important;
	}

.poule-card[b-3m7vp2hfk1] {
	background: rgba(15, 20, 25, 0.6);
	border-radius: 12px;
	border: 1px solid rgba(29, 209, 161, 0.2);
	overflow: hidden;
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

	.poule-card:hover[b-3m7vp2hfk1] {
		border-color: rgba(29, 209, 161, 0.4);
		box-shadow: 0 4px 20px rgba(29, 209, 161, 0.2);
	}

.poule-header[b-3m7vp2hfk1] {
	background: rgba(29, 209, 161, 0.15);
	padding: 0.75rem 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid rgba(29, 209, 161, 0.3);
	flex-shrink: 0;
}

.poule-name[b-3m7vp2hfk1] {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 600;
	color: #1dd1a1;
}

.poule-progress[b-3m7vp2hfk1] {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.poule-body[b-3m7vp2hfk1] {
	padding: 0.75rem;
	flex: 1;
	overflow-y: auto;
	overflow-x: hidden;
	min-height: 0;
}

	/* Custom scrollbar for poule body */
	.poule-body[b-3m7vp2hfk1]::-webkit-scrollbar {
		width: 4px;
	}

	.poule-body[b-3m7vp2hfk1]::-webkit-scrollbar-track {
		background: rgba(15, 20, 25, 0.3);
	}

	.poule-body[b-3m7vp2hfk1]::-webkit-scrollbar-thumb {
		background: rgba(29, 209, 161, 0.3);
		border-radius: 2px;
	}

		.poule-body[b-3m7vp2hfk1]::-webkit-scrollbar-thumb:hover {
			background: rgba(29, 209, 161, 0.5);
		}

.rankings-table[b-3m7vp2hfk1] {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.ranking-row[b-3m7vp2hfk1] {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.5rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 8px;
	transition: all 0.2s ease;
}

	.ranking-row:hover[b-3m7vp2hfk1] {
		background: rgba(255, 255, 255, 0.08);
		transform: translateX(4px);
	}

	.ranking-row.qualified[b-3m7vp2hfk1] {
		background: rgba(29, 209, 161, 0.1);
		border-left: 3px solid #1dd1a1;
	}

		.ranking-row.qualified:hover[b-3m7vp2hfk1] {
			background: rgba(29, 209, 161, 0.15);
		}

.position-badge[b-3m7vp2hfk1] {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	font-weight: 700;
	font-size: 1rem;
	flex-shrink: 0;
}

	.position-badge.gold[b-3m7vp2hfk1] {
		background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
		color: #000;
		box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
	}

	.position-badge.silver[b-3m7vp2hfk1] {
		background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
		color: #000;
		box-shadow: 0 0 15px rgba(192, 192, 192, 0.5);
	}

	.position-badge.bronze[b-3m7vp2hfk1] {
		background: linear-gradient(135deg, #cd7f32 0%, #e8a87c 100%);
		color: #fff;
		box-shadow: 0 0 15px rgba(205, 127, 50, 0.5);
	}

	.position-badge.other[b-3m7vp2hfk1] {
		background: rgba(255, 255, 255, 0.1);
		color: rgba(255, 255, 255, 0.7);
	}

.team-info[b-3m7vp2hfk1] {
	flex: 1;
	min-width: 0;
}

.team-name[b-3m7vp2hfk1] {
	display: block;
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.25rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.team-stats[b-3m7vp2hfk1] {
	display: flex;
	gap: 0.75rem;
	font-size: 0.8rem;
}

.stat-item[b-3m7vp2hfk1] {
	color: rgba(255, 255, 255, 0.7);
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.points-badge[b-3m7vp2hfk1] {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #1dd1a1 0%, #16a085 100%);
	color: white;
	padding: 0.4rem 0.8rem;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 700;
	min-width: 50px;
	box-shadow: 0 4px 15px rgba(29, 209, 161, 0.3);
	flex-shrink: 0;
}

	.points-badge small[b-3m7vp2hfk1] {
		font-size: 0.6rem;
		font-weight: 400;
		opacity: 0.9;
	}

.qualification-footer[b-3m7vp2hfk1] {
	margin-top: 0.5rem;
	padding-top: 0.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 1400px) {
	.poule-name[b-3m7vp2hfk1] {
		font-size: 1rem;
	}

	.team-name[b-3m7vp2hfk1] {
		font-size: 0.95rem;
	}

	.team-stats[b-3m7vp2hfk1] {
		gap: 0.5rem;
		font-size: 0.75rem;
	}
}

@media (max-width: 768px) {
	.team-stats[b-3m7vp2hfk1] {
		gap: 0.5rem;
		font-size: 0.7rem;
	}

	.team-name[b-3m7vp2hfk1] {
		font-size: 0.9rem;
	}

	.points-badge[b-3m7vp2hfk1] {
		font-size: 1.1rem;
		min-width: 45px;
		padding: 0.35rem 0.7rem;
	}
}
/* _content/ClubTournamentsBlazorApp/Components/Tournaments/Dashboard/TournamentDashboard.razor.rz.scp.css */
/* Dashboard Full-Screen Layout */
.dashboard-fullscreen[b-b2f37he5xk] {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
    color: #ffffff;
    overflow-x: hidden;
}

/* Header */
.dashboard-header[b-b2f37he5xk] {
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(29, 209, 161, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.dashboard-title[b-b2f37he5xk] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1dd1a1;
    text-shadow: 0 2px 10px rgba(29, 209, 161, 0.3);
}

.dashboard-subtitle[b-b2f37he5xk] {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Refresh Indicator */
.refresh-indicator[b-b2f37he5xk] {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

/* Main Content */
.dashboard-content[b-b2f37he5xk] {
    height: calc(100vh - 100px); /* Header + Footer */
    display: flex;
    flex-direction: column;
}

.dashboard-content .container-fluid[b-b2f37he5xk] {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Dashboard Sections */
.dashboard-section[b-b2f37he5xk] {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.section-header[b-b2f37he5xk] {
    background: rgba(29, 209, 161, 0.1);
    border-bottom: 2px solid rgba(29, 209, 161, 0.3);
    padding: 1rem 1.5rem;
}

.section-header.losers-bracket-header[b-b2f37he5xk] {
    background: rgba(255, 107, 107, 0.1);
    border-bottom: 2px solid rgba(255, 107, 107, 0.3);
}

.section-title[b-b2f37he5xk] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1dd1a1;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-content[b-b2f37he5xk] {
    max-height: none;
    overflow-y: visible;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Custom scrollbar */
.section-content[b-b2f37he5xk]::-webkit-scrollbar {
    width: 8px;
}

.section-content[b-b2f37he5xk]::-webkit-scrollbar-track {
    background: rgba(15, 20, 25, 0.5);
    border-radius: 10px;
}

.section-content[b-b2f37he5xk]::-webkit-scrollbar-thumb {
    background: rgba(29, 209, 161, 0.5);
    border-radius: 10px;
}

.section-content[b-b2f37he5xk]::-webkit-scrollbar-thumb:hover {
    background: rgba(29, 209, 161, 0.7);
}

.text-light-50[b-b2f37he5xk] {
    color: rgba(255, 255, 255, 0.5);
}

/* Loading & Error States */
.spinner-border-lg[b-b2f37he5xk] {
    width: 3rem;
    height: 3rem;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .dashboard-title[b-b2f37he5xk] {
        font-size: 2rem;
    }

    .section-title[b-b2f37he5xk] {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .dashboard-title[b-b2f37he5xk] {
        font-size: 1.5rem;
    }

    .section-title[b-b2f37he5xk] {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .dashboard-title[b-b2f37he5xk] {
        font-size: 1.3rem;
    }

    .section-title[b-b2f37he5xk] {
        font-size: 1rem;
    }

    .section-header[b-b2f37he5xk] {
        padding: 0.75rem 1rem;
    }

    .section-content[b-b2f37he5xk] {
        padding: 1rem;
    }
}

/* Animation for new content */
@keyframes fadeInUp-b-b2f37he5xk {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dashboard-section[b-b2f37he5xk] {
    animation: fadeInUp-b-b2f37he5xk 0.5s ease-out;
}

/* Slide Indicators */
.slide-indicators[b-b2f37he5xk] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(15, 20, 25, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(29, 209, 161, 0.3);
    flex-shrink: 0;
}

.slide-indicator[b-b2f37he5xk] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-indicator:hover[b-b2f37he5xk] {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(29, 209, 161, 0.5);
    color: rgba(255, 255, 255, 0.9);
}

.slide-indicator.active[b-b2f37he5xk] {
    background: linear-gradient(135deg, rgba(29, 209, 161, 0.3) 0%, rgba(29, 209, 161, 0.2) 100%);
    border-color: #1dd1a1;
    color: #1dd1a1;
    font-weight: 600;
}

.indicator-dot[b-b2f37he5xk] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.slide-indicator.active .indicator-dot[b-b2f37he5xk] {
    background: #1dd1a1;
    box-shadow: 0 0 10px rgba(29, 209, 161, 0.5);
}

.indicator-label[b-b2f37he5xk] {
    font-size: 0.9rem;
}

.slide-timer[b-b2f37he5xk] {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(29, 209, 161, 0.1);
    border: 1px solid rgba(29, 209, 161, 0.3);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Slides Container */
.slides-container[b-b2f37he5xk] {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.slide[b-b2f37he5xk] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.6s ease-in-out;
    display: flex;
    flex-direction: column;
}

.slide.active[b-b2f37he5xk] {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 1;
}

/* Slide specific adjustments */
.slide .row[b-b2f37he5xk] {
    flex: 1;
    margin: 0;
}

.slide .col-12[b-b2f37he5xk] {
    display: flex;
    flex-direction: column;
    padding: 0rem;
}

.slide .col-4[b-b2f37he5xk] {
    display: flex;
    flex-direction: column;
    padding: 0 0.5rem;
}

.slide .col-6[b-b2f37he5xk] {
    display: flex;
    flex-direction: column;
    padding: 0 0.5rem;
}

/* Three column layout for slide 2 */
.slide .row.g-3 .col-4[b-b2f37he5xk] {
    padding: 0 0.4rem;
}

.slide .row.g-3 .col-4:first-child[b-b2f37he5xk] {
    padding-left: 0;
}

.slide .row.g-3 .col-4:last-child[b-b2f37he5xk] {
    padding-right: 0;
}

.slide .dashboard-section[b-b2f37he5xk] {
    margin-bottom: 0;
    overflow: hidden;
}

.slide .section-content[b-b2f37he5xk] {
    overflow-y: auto;
    overflow-x: hidden;
}

/* Adjust font sizes for 3-column layout */
.slide .row.g-3 .section-title[b-b2f37he5xk] {
    font-size: 1.2rem;
}

.slide .row.g-3 .section-header[b-b2f37he5xk] {
    padding: 0.75rem 1rem;
}

.slide .row.g-3 .section-content[b-b2f37he5xk] {
    padding: 0.75rem;
}

.slide .section-content[b-b2f37he5xk]::-webkit-scrollbar {
    width: 6px;
}

.slide .section-content[b-b2f37he5xk]::-webkit-scrollbar-track {
    background: rgba(15, 20, 25, 0.3);
}

.slide .section-content[b-b2f37he5xk]::-webkit-scrollbar-thumb {
    background: rgba(29, 209, 161, 0.3);
    border-radius: 3px;
}

.slide .section-content[b-b2f37he5xk]::-webkit-scrollbar-thumb:hover {
    background: rgba(29, 209, 161, 0.5);
}

/* Responsive for slides */
@media (max-width: 992px) {
    .dashboard-content[b-b2f37he5xk] {
        height: calc(100vh - 160px);
    }

    .slide-indicators[b-b2f37he5xk] {
        flex-direction: column;
        gap: 1rem;
    }

    .indicator-label[b-b2f37he5xk] {
        font-size: 0.85rem;
    }

    /* Stack columns on smaller screens */
    .slide .row.g-3 .col-4[b-b2f37he5xk] {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0.5rem 0;
    }

    .slide .row.g-3 .section-title[b-b2f37he5xk] {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .dashboard-content[b-b2f37he5xk] {
        height: calc(100vh - 140px);
        padding: 0.5rem 0;
    }

    .slide-indicators[b-b2f37he5xk] {
        padding: 0.5rem;
        gap: 0.75rem;
    }

    .slide-indicator[b-b2f37he5xk] {
        padding: 0.4rem 0.75rem;
    }

    .indicator-label[b-b2f37he5xk] {
        font-size: 0.8rem;
    }

    .slide-timer[b-b2f37he5xk] {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }

    .slide .col-12[b-b2f37he5xk] {
        padding: 0rem;
    }

    .slide .row.g-3 .section-title[b-b2f37he5xk] {
        font-size: 1rem;
    }

    .slide .row.g-3 .section-header[b-b2f37he5xk] {
        padding: 0.6rem 0.75rem;
    }

    .slide .row.g-3 .section-content[b-b2f37he5xk] {
        padding: 0.5rem;
    }
}

/* Large screens - optimize for readability */
@media (min-width: 1400px) {
    .slide .row.g-3 .section-title[b-b2f37he5xk] {
        font-size: 1.4rem;
    }

    .slide .row.g-3 .section-header[b-b2f37he5xk] {
        padding: 1rem 1.25rem;
    }

    .slide .row.g-3 .section-content[b-b2f37he5xk] {
        padding: 1rem;
    }
}

/* _content/ClubTournamentsBlazorApp/Components/Tournaments/EventsRowComponent.razor.rz.scp.css */
/* ============================================
   EVENTS ROW COMPONENT - SPECIFIC STYLES
   Shared tournament card styles moved to wwwroot/shared-components.css
   ============================================ */

/* Card styling */
.tournament-card[b-mfgn5zrnva] {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 0.5rem;
    overflow: hidden;
}

.tournament-card:hover[b-mfgn5zrnva] {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}

/* Component-specific image wrapper styling */
.tournament-image-wrapper[b-mfgn5zrnva] {
    position: relative;
    width: 180px;
    height: 100%;
    min-height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Override base tournament-image-col dimensions */
.tournament-image-col[b-mfgn5zrnva] {
    width: 180px;
    min-width: 180px;
}

.tournament-image[b-mfgn5zrnva] {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tournament-card:hover .tournament-image[b-mfgn5zrnva] {
    transform: scale(1.05);
}

/* Override base tournament-actions-col dimensions */
.tournament-actions-col[b-mfgn5zrnva] {
    width: 130px;
    min-width: 130px;
    border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.tournament-actions-col .btn[b-mfgn5zrnva] {
    white-space: nowrap;
    transition: all 0.2s ease;
}

.tournament-actions-col .btn:hover[b-mfgn5zrnva] {
    transform: translateY(-1px);
}

/* Tournament title */
.tournament-title[b-mfgn5zrnva] {
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Tournament meta info */
.tournament-meta[b-mfgn5zrnva] {
    line-height: 1.6;
}

.tournament-meta i[b-mfgn5zrnva] {
    width: 16px;
    text-align: center;
}

/* Tournament info badges */
.tournament-info .badge[b-mfgn5zrnva] {
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.tournament-info .badge:hover[b-mfgn5zrnva] {
    transform: translateY(-1px);
}

.tournament-description[b-mfgn5zrnva] {
    line-height: 1.5;
    margin-top: 0.5rem;
}

.tournament-location[b-mfgn5zrnva],
.tournament-dates[b-mfgn5zrnva] {
    display: inline;
}

/* Responsive voor tablet */
@media (max-width: 991px) {
    .tournament-image-wrapper[b-mfgn5zrnva],
    .tournament-image-col[b-mfgn5zrnva] {
        width: 150px;
        min-width: 150px;
        min-height: 150px;
    }

    .tournament-actions-col[b-mfgn5zrnva] {
        width: 100px;
        min-width: 100px;
    }

    .tournament-actions-col .btn span[b-mfgn5zrnva] {
        display: none !important;
    }

    .tournament-title[b-mfgn5zrnva] {
        font-size: 1.1rem;
    }

    .tournament-meta[b-mfgn5zrnva] {
        font-size: 0.8rem;
    }

    .tournament-info .badge[b-mfgn5zrnva] {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Responsive voor mobiel - component-specific overrides */
@media (max-width: 767px) {
    .tournament-card[b-mfgn5zrnva] {
        margin-left: 0;
        margin-right: 0;
        border-radius: 0.5rem;
    }

    .tournament-image-wrapper[b-mfgn5zrnva],
    .tournament-image-col[b-mfgn5zrnva] {
        width: 100%;
        min-width: 100%;
        height: 220px;
        min-height: 220px;
    }

    .tournament-details-col .card-body[b-mfgn5zrnva] {
        padding: 1.25rem !important;
    }

    .tournament-title[b-mfgn5zrnva] {
        font-size: 1.15rem !important;
        font-weight: 600;
        margin-bottom: 0.75rem !important;
    }

    .tournament-meta[b-mfgn5zrnva] {
        font-size: 0.85rem;
        margin-bottom: 1rem !important;
    }

    .tournament-meta i[b-mfgn5zrnva] {
        width: 20px;
        font-size: 0.9rem;
    }

    .tournament-info[b-mfgn5zrnva] {
        gap: 0.4rem !important;
    }

    .tournament-info .badge[b-mfgn5zrnva] {
        font-size: 0.7rem;
        padding: 0.35rem 0.6rem;
    }

    /* Mobile action buttons (inside card body) */
    .d-md-none[b-mfgn5zrnva] {
        margin-top: 1rem !important;
        padding-top: 1rem !important;
    }

    .d-md-none .btn[b-mfgn5zrnva] {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        font-weight: 500;
    }

    .d-md-none .btn i[b-mfgn5zrnva] {
        font-size: 0.9rem;
    }
}

/* Extra small devices */
@media (max-width: 575px) {
    .tournament-card[b-mfgn5zrnva] {
        border-radius: 0.5rem;
        margin: 0;
    }

    .tournament-image-wrapper[b-mfgn5zrnva],
    .tournament-image-col[b-mfgn5zrnva] {
        height: 200px;
        min-height: 200px;
    }

    .tournament-details-col .card-body[b-mfgn5zrnva] {
        padding: 1rem !important;
    }

    .tournament-title[b-mfgn5zrnva] {
        font-size: 1.05rem !important;
        line-height: 1.3;
        margin-bottom: 0.625rem !important;
    }

    .tournament-meta[b-mfgn5zrnva] {
        font-size: 0.8rem;
        margin-bottom: 0.875rem !important;
    }

    .tournament-meta i[b-mfgn5zrnva] {
        width: 18px;
        font-size: 0.85rem;
    }

    .tournament-info[b-mfgn5zrnva] {
        gap: 0.35rem !important;
    }

    .tournament-info .badge[b-mfgn5zrnva] {
        font-size: 0.68rem;
        padding: 0.3rem 0.55rem;
    }

    .tournament-description[b-mfgn5zrnva] {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .d-md-none .btn[b-mfgn5zrnva] {
        font-size: 0.8rem;
        padding: 0.45rem 0.875rem;
    }

    .d-md-none .btn i[b-mfgn5zrnva] {
        font-size: 0.85rem;
    }
}


/* _content/ClubTournamentsBlazorApp/Components/Tournaments/Knockout/BracketMatch.razor.rz.scp.css */
/* Bracket Match Card */
.bracket-match[b-0k2vbqnba8] {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 0.5rem;
    min-width: 180px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.bracket-match:hover[b-0k2vbqnba8] {
    border-color: var(--bs-primary);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.bracket-match.match-played[b-0k2vbqnba8] {
    border-color: #28a745;
    background: #f8fff9;
}

.bracket-match.match-ready[b-0k2vbqnba8] {
    border-color: #ffc107;
    background: #fffef5;
}

.bracket-match.match-pending[b-0k2vbqnba8] {
    border-color: #6c757d;
    opacity: 0.7;
}

/* Match Header */
.bracket-match-header[b-0k2vbqnba8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.35rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.85rem;
}

/* Teams Container */
.bracket-match-teams[b-0k2vbqnba8] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bracket-team[b-0k2vbqnba8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0.5rem;
    border-radius: 4px;
    transition: background 0.2s;
    min-height: 40px;
}

.bracket-team.team-clickable[b-0k2vbqnba8] {
    cursor: pointer;
}

.bracket-team.team-clickable:hover[b-0k2vbqnba8] {
    background: #f0f8ff;
}

.bracket-team.team-winner[b-0k2vbqnba8] {
    background: #fff3cd;
    border-left: 3px solid #ffc107;
    font-weight: 600;
}

.bracket-team.team-loser[b-0k2vbqnba8] {
    opacity: 0.6;
}

.bracket-team.team-empty[b-0k2vbqnba8] {
    background: #f8f9fa;
    font-style: italic;
}

/* Team Info */
.team-info[b-0k2vbqnba8] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.team-name[b-0k2vbqnba8] {
    font-size: 0.85rem;
    font-weight: 500;
}

.team-players[b-0k2vbqnba8] {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

.player-avatar[b-0k2vbqnba8] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.team-score[b-0k2vbqnba8] {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--bs-primary);
    min-width: 25px;
    text-align: center;
}

.winner-icon[b-0k2vbqnba8] {
    color: #ffc107;
    font-size: 1rem;
    margin-left: 0.35rem;
}

/* VS Divider */
.vs-divider[b-0k2vbqnba8] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.15rem 0;
    font-size: 0.7rem;
    color: #6c757d;
}

/* Match Actions */
.bracket-match-actions[b-0k2vbqnba8] {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e0e0e0;
}

/* Responsive */
@media (max-width: 768px) {
    .bracket-match[b-0k2vbqnba8] {
        min-width: 160px;
        padding: 0.5rem;
    }

    .team-name[b-0k2vbqnba8] {
        font-size: 0.8rem;
    }

    .player-avatar[b-0k2vbqnba8] {
        width: 20px;
        height: 20px;
    }

    .team-score[b-0k2vbqnba8] {
        font-size: 1.2rem;
    }
}
/* _content/ClubTournamentsBlazorApp/Components/Tournaments/Knockout/KnockoutBracket.razor.rz.scp.css */
/* Bracket Container */
.knockout-bracket-container[b-3976341p09] {
    width: 100%;
    overflow-x: auto;
    padding: 0.5rem 0;
}

/* Horizontal Bracket Layout */
.bracket-horizontal[b-3976341p09] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: max-content;
}

.bracket-section[b-3976341p09] {
    flex: 1;
}

.bracket-section-title[b-3976341p09] {
    margin-bottom: 0.5rem;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid var(--bs-primary);
    font-weight: 600;
    font-size: 1rem;
}

.winners-bracket .bracket-section-title[b-3976341p09] {
    border-bottom-color: #ffc107;
}

.losers-bracket .bracket-section-title[b-3976341p09] {
    border-bottom-color: #17a2b8;
}

.grand-finals .bracket-section-title[b-3976341p09] {
    border-bottom-color: #dc3545;
}

/* Bracket Rounds */
.bracket-rounds[b-3976341p09] {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.bracket-round[b-3976341p09] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 200px;
}

.round-title[b-3976341p09] {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bs-primary);
    text-align: center;
    margin-bottom: 0.5rem;
    padding: 0.35rem 0.5rem;
    background: #f8f9fa;
    border-radius: 4px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.round-matches[b-3976341p09] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-around;
    flex: 1;
}

.match-wrapper[b-3976341p09] {
    position: relative;
}

/* Bracket Connectors */
.bracket-connector[b-3976341p09] {
    position: absolute;
    right: -3rem;
    top: 50%;
    width: 3rem;
    height: 2px;
    background: var(--bs-primary);
    transform: translateY(-50%);
}

.bracket-connector[b-3976341p09]::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid var(--bs-primary);
    transform: translateY(-50%);
}

/* Grand Finals */
.grand-finals[b-3976341p09] {
    text-align: center;
}

.grand-finals-match[b-3976341p09] {
    display: inline-block;
    min-width: 300px;
}

/* Vertical/List View */
.bracket-vertical .card[b-3976341p09] {
    border: 2px solid var(--bs-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .bracket-rounds[b-3976341p09] {
        gap: 2rem;
    }

    .bracket-round[b-3976341p09] {
        min-width: 180px;
    }

    .bracket-connector[b-3976341p09] {
        right: -2rem;
        width: 2rem;
    }

    .round-matches[b-3976341p09] {
        gap: 1rem;
    }
}

/* Scrollbar Styling */
.knockout-bracket-container[b-3976341p09]::-webkit-scrollbar {
    height: 8px;
}

.knockout-bracket-container[b-3976341p09]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.knockout-bracket-container[b-3976341p09]::-webkit-scrollbar-thumb {
    background: var(--bs-primary);
    border-radius: 4px;
}

.knockout-bracket-container[b-3976341p09]::-webkit-scrollbar-thumb:hover {
    background: var(--bs-primary-dark);
}

/* Animation for new matches */
@keyframes slideIn-b-3976341p09 {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.match-wrapper[b-3976341p09] {
    animation: slideIn-b-3976341p09 0.3s ease-out;
}
/* _content/ClubTournamentsBlazorApp/Components/Tournaments/Ladders/Ladders.razor.rz.scp.css */
.card[b-968aiw5v3z] {
	border: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge[b-968aiw5v3z] {
	font-weight: 600;
	padding: 0.5rem 0.75rem;
}

	.badge.bg-primary-first[b-968aiw5v3z] {
		background-color: #EFBF04 !important;
		color: #fff;
	}

	.badge.bg-primary[b-968aiw5v3z] {
		background-color: rgb(135 137 139) !important;
		color: #fff;
	}

	.badge.bg-secondary[b-968aiw5v3z] {
		background-color: var(--secondary-light) !important;
	}

	.badge.bg-info[b-968aiw5v3z] {
		background-color: var(--primary-color) !important;
		color: var(--secondary-color);
	}

	.badge.bg-success[b-968aiw5v3z] {
		background-color: var(--primary-color) !important;
	}

	.badge.bg-warning[b-968aiw5v3z] {
		background-color: #FFA500;
		color: var(--secondary-color);
	}

	.badge.bg-light[b-968aiw5v3z] {
		background-color: #E8F5F0 !important;
		color: var(--secondary-color);
		border: 1px solid var(--primary-color);
	}

.form-control:focus[b-968aiw5v3z], .form-select:focus[b-968aiw5v3z] {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 0.2rem rgba(29, 209, 161, 0.25);
}

.form-control[b-968aiw5v3z], .form-select[b-968aiw5v3z] {
	border-color: #ddd;
}

.table-light[b-968aiw5v3z] {
	background-color: #F0F9F7;
}

	.table-light th[b-968aiw5v3z] {
		color: var(--secondary-color);
		font-weight: 700;
		border-bottom: 2px solid var(--primary-color);
	}

.list-group-item[b-968aiw5v3z] {
	border-color: #E8F5F0;
	border-left: 3px solid transparent;
	transition: all 0.3s ease;
}

	.list-group-item:hover[b-968aiw5v3z] {
		border-left-color: var(--primary-color);
		background-color: #F0F9F7;
	}

.table-responsive[b-968aiw5v3z] {
	border-radius: 0.375rem;
}

.alert-success[b-968aiw5v3z] {
	background-color: #E8F5F0;
	border-color: var(--primary-color);
	color: var(--secondary-color);
}

	.alert-success .alert-heading[b-968aiw5v3z] {
		color: var(--secondary-color);
	}

.text-muted[b-968aiw5v3z] {
	color: #6c757d !important;
}

.table tbody tr:hover[b-968aiw5v3z] {
	background-color: #F0F9F7;
}

h1[b-968aiw5v3z], h2[b-968aiw5v3z], h3[b-968aiw5v3z], h4[b-968aiw5v3z], h5[b-968aiw5v3z], h6[b-968aiw5v3z] {
	color: var(--secondary-color);
}

code[b-968aiw5v3z] {
	color: var(--primary-color);
	background-color: #F0F9F7;
	padding: 0.2rem 0.4rem;
	border-radius: 0.25rem;
}

.btn:focus[b-968aiw5v3z], .btn:active:focus[b-968aiw5v3z], .btn-link.nav-link:focus[b-968aiw5v3z], .form-control:focus[b-968aiw5v3z], .form-check-input:focus[b-968aiw5v3z] {
	outline: 0;
	box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--primary-color);
}

.team-player[b-968aiw5v3z] {
	position: relative;
	left: -20px;
}

/* Tabs Styling */
.nav-tabs[b-968aiw5v3z] {
	border-bottom: 2px solid #e0e0e0;
}

.nav-tabs .nav-link[b-968aiw5v3z] {
	color: #6c757d;
	border: none;
	border-bottom: 3px solid transparent;
	padding: 0.75rem 1.25rem;
	transition: all 0.3s ease;
	font-weight: 500;
	white-space: nowrap;
}

	.nav-tabs .nav-link:hover[b-968aiw5v3z] {
		color: var(--primary-color);
		border-bottom-color: rgba(29, 209, 161, 0.3);
	}

	.nav-tabs .nav-link.active[b-968aiw5v3z] {
		color: var(--primary-color);
		border-bottom-color: var(--primary-color);
		background-color: transparent;
	}

	.nav-tabs .nav-link .badge[b-968aiw5v3z] {
		font-size: 0.65rem;
		padding: 0.2rem 0.4rem;
		vertical-align: super;
		position: relative;
		top: -2px;
	}

.tab-content[b-968aiw5v3z] {
	padding-top: 1rem;
}

.tab-pane[b-968aiw5v3z] {
	animation: fadeIn-b-968aiw5v3z 0.3s ease-in;
	color: black;
}

@keyframes fadeIn-b-968aiw5v3z {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Compact tabs for better mobile experience */
.nav-tabs-compact .nav-link[b-968aiw5v3z] {
	padding: 0.5rem 0.75rem;
	font-size: 0.9rem;
}

/* Responsive tabs */
@media (max-width: 575.98px) {
	.nav-tabs .nav-link[b-968aiw5v3z] {
		padding: 0.5rem 0.5rem;
		font-size: 0.875rem;
	}

	.nav-tabs-compact .nav-link[b-968aiw5v3z] {
		padding: 0.4rem 0.5rem;
		font-size: 0.85rem;
	}

		.nav-tabs .nav-link i[b-968aiw5v3z] {
			font-size: 0.85rem;
		}

		.nav-tabs .nav-link .badge[b-968aiw5v3z] {
			font-size: 0.6rem;
			padding: 0.15rem 0.3rem;
		}
}

/* Pagination Styling */
.pagination[b-968aiw5v3z] {
	gap: 0.25rem;
}

.pagination .page-link[b-968aiw5v3z] {
	border: 1px solid #dee2e6;
	color: var(--secondary-color);
	padding: 0.375rem 0.75rem;
	transition: all 0.2s ease;
	border-radius: 0.375rem;
}

	.pagination .page-link:hover[b-968aiw5v3z] {
		background-color: var(--primary-color);
		border-color: var(--primary-color);
		color: white;
	}

	.pagination .page-link:focus[b-968aiw5v3z] {
		box-shadow: 0 0 0 0.2rem rgba(29, 209, 161, 0.25);
	}

.pagination .page-item.active .page-link[b-968aiw5v3z] {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: white;
	font-weight: 600;
}

.pagination .page-item.disabled .page-link[b-968aiw5v3z] {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Responsive pagination */
@media (max-width: 575.98px) {
	.pagination-sm .page-link[b-968aiw5v3z] {
		padding: 0.25rem 0.5rem;
		font-size: 0.8rem;
	}
}

/* Tournament Info Tab Content */
.tournament-info-content[b-968aiw5v3z] {
	padding: 1rem 0;
}

.info-section[b-968aiw5v3z] {
	margin-bottom: 1.5rem;
}

.info-title[b-968aiw5v3z] {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--secondary-color);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
}

.info-text[b-968aiw5v3z] {
	color: #495057;
	line-height: 1.6;
	font-size: 0.95rem;
	margin: 0;
	white-space: pre-wrap;
}

@media (max-width: 575.98px) {
	.info-title[b-968aiw5v3z] {
		font-size: 1rem;
	}

	.info-text[b-968aiw5v3z] {
		font-size: 0.9rem;
	}
}
/* _content/ClubTournamentsBlazorApp/Components/Tournaments/Ladders/TournamentAdmin.razor.rz.scp.css */
/* Tournament Admin Styling */

.card[b-tda1boruku] {
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Tabs Styling */
.nav-tabs[b-tda1boruku] {
    border-bottom: 2px solid #e0e0e0;
}

.nav-tabs .nav-link[b-tda1boruku] {
    color: #6c757d;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
}

    .nav-tabs .nav-link:hover[b-tda1boruku] {
        color: var(--primary-color);
        border-bottom-color: rgba(29, 209, 161, 0.3);
    }

    .nav-tabs .nav-link.active[b-tda1boruku] {
        color: var(--primary-color);
        border-bottom-color: var(--primary-color);
        background-color: transparent;
    }

    .nav-tabs .nav-link .badge[b-tda1boruku] {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
        vertical-align: super;
        position: relative;
        top: -2px;
    }

.tab-content[b-tda1boruku] {
    padding-top: 1rem;
}

.tab-pane[b-tda1boruku] {
    animation: fadeIn-b-tda1boruku 0.3s ease-in;
}

@keyframes fadeIn-b-tda1boruku {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Compact tabs for better mobile experience */
.nav-tabs-compact .nav-link[b-tda1boruku] {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
}

/* Table Styling */
.table-light[b-tda1boruku] {
    background-color: #F0F9F7;
}

    .table-light th[b-tda1boruku] {
        color: var(--secondary-color);
        font-weight: 700;
        border-bottom: 2px solid var(--primary-color);
    }

.table tbody tr:hover[b-tda1boruku] {
    background-color: #F0F9F7;
}

.table-hover tbody tr[b-tda1boruku] {
    transition: background-color 0.2s ease;
}

/* Badge Styling */
.badge[b-tda1boruku] {
    font-weight: 600;
}

/* Form Styling */
.form-label[b-tda1boruku] {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.fw-600[b-tda1boruku] {
    font-weight: 600;
}

.form-control:focus[b-tda1boruku],
.form-select:focus[b-tda1boruku] {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(29, 209, 161, 0.25);
}

.form-control[b-tda1boruku],
.form-select[b-tda1boruku] {
    border-color: #ddd;
}

/* Button Styling */
.btn-primary[b-tda1boruku] {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-primary:hover[b-tda1boruku] {
        background-color: #1abc9c;
        border-color: #1abc9c;
    }

.btn-success[b-tda1boruku] {
    background-color: #27ae60;
    border-color: #27ae60;
}

    .btn-success:hover[b-tda1boruku] {
        background-color: #229954;
        border-color: #229954;
    }

.btn-danger[b-tda1boruku] {
    background-color: #e74c3c;
    border-color: #e74c3c;
}

    .btn-danger:hover[b-tda1boruku] {
        background-color: #c0392b;
        border-color: #c0392b;
    }

/* Alert Styling */
.alert-success[b-tda1boruku] {
    background-color: #E8F5F0;
    border-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Responsive Adjustments */
@media (max-width: 575.98px) {
    .nav-tabs .nav-link[b-tda1boruku] {
        padding: 0.5rem 0.5rem;
        font-size: 0.875rem;
    }

    .nav-tabs-compact .nav-link[b-tda1boruku] {
        padding: 0.4rem 0.5rem;
        font-size: 0.85rem;
    }

        .nav-tabs .nav-link i[b-tda1boruku] {
            font-size: 0.85rem;
        }

        .nav-tabs .nav-link .badge[b-tda1boruku] {
            font-size: 0.6rem;
            padding: 0.15rem 0.3rem;
        }

    .card-body[b-tda1boruku] {
        padding: 1rem;
    }

    .btn-sm[b-tda1boruku] {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 991.98px) {
    .col-lg-7[b-tda1boruku],
    .col-lg-5[b-tda1boruku] {
        margin-bottom: 1rem;
    }
}

/* Empty State Styling */
.text-center.py-5[b-tda1boruku] {
    padding: 3rem 1rem;
}

    .text-center.py-5 i[b-tda1boruku] {
        opacity: 0.5;
    }

/* Image Preview */
.img-thumbnail[b-tda1boruku] {
    border: 2px solid var(--primary-color);
    border-radius: 0.5rem;
}
/* _content/ClubTournamentsBlazorApp/Components/Tournaments/Poules/PouleAdminTabs/CourtQueueDashboard.razor.rz.scp.css */
.court-queue-dashboard[b-q20jpqjv8h] {
	margin: 1rem 0;
}

.stat-card[b-q20jpqjv8h] {
	padding: 1.5rem;
	border-radius: 8px;
	color: white;
	text-align: center;
}

.stat-value[b-q20jpqjv8h] {
	font-size: 2rem;
	font-weight: bold;
}

.stat-label[b-q20jpqjv8h] {
	font-size: 0.9rem;
	margin-top: 0.5rem;
	opacity: 0.9;
}

.court-card[b-q20jpqjv8h] {
	border: 2px solid #dee2e6;
	border-radius: 8px;
	padding: 1rem;
	height: 100%;
	transition: all 0.3s;
}

	.court-card.busy[b-q20jpqjv8h] {
		border-color: #dc3545;
		background-color: #fff5f5;
	}

	.court-card.available[b-q20jpqjv8h] {
		border-color: #28a745;
		background-color: #f0fff4;
	}

.court-header[b-q20jpqjv8h] {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid #dee2e6;
}

.current-match[b-q20jpqjv8h], .suggested-match[b-q20jpqjv8h] {
	padding: 0.75rem;
	background-color: white;
	border-radius: 6px;
	border: 1px solid #e0e0e0;
}

.suggested-match[b-q20jpqjv8h] {
	border-left: 3px solid #0d6efd;
}

.poule-queue-section[b-q20jpqjv8h] {
	border-left: 4px solid #ffc107;
	padding-left: 1rem;
	margin-bottom: 2rem;
}

/* Highlight priority matches */
.table-warning[b-q20jpqjv8h] {
	background-color: #fff3cd !important;
}

	.table-warning:hover[b-q20jpqjv8h] {
		background-color: #ffe69c !important;
	}

/* Queue position badges */
.badge.bg-warning.text-dark[b-q20jpqjv8h] {
	font-weight: bold;
	font-size: 0.9rem;
}

/* Improved spacing for queue tables */
.table td[b-q20jpqjv8h] {
	vertical-align: middle;
}

.table th[b-q20jpqjv8h] {
	font-weight: 600;
	background-color: #f8f9fa;
	border-bottom: 2px solid #dee2e6;
}

/* Global queue overview styling */
.list-group-item[b-q20jpqjv8h] {
	border-left: 4px solid #0d6efd;
	transition: all 0.2s;
}

	.list-group-item:hover[b-q20jpqjv8h] {
		background-color: #f8f9fa;
		transform: translateX(5px);
	}
/* _content/ClubTournamentsBlazorApp/Components/Tournaments/Poules/Poules.razor.rz.scp.css */
/* Poule cards styling */
.card.border-primary[b-qxwgjj45x3] {
	border-width: 2px;
	transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

	.card.border-primary:hover[b-qxwgjj45x3] {
		transform: translateY(-5px);
		box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15) !important;
	}

/* Team row highlighting for qualified teams */
.table-success[b-qxwgjj45x3] {
	background-color: rgba(25, 135, 84, 0.1) !important;
}

	.table-success td[b-qxwgjj45x3] {
		border-color: rgba(25, 135, 84, 0.2) !important;
	}

/* Match cards */
.card.border-success[b-qxwgjj45x3] {
	border-width: 2px;
	border-color: var(--bs-success) !important;
}

.card.border-warning[b-qxwgjj45x3] {
	border-width: 2px;
	border-color: var(--bs-warning) !important;
}

/* Match winner highlighting */
.bg-light.rounded[b-qxwgjj45x3] {
	background-color: rgba(25, 135, 84, 0.1) !important;
	padding: 4px 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.nav-tabs .nav-link[b-qxwgjj45x3] {
		font-size: 0.875rem;
		padding: 0.5rem 0.75rem;
	}

	.card-body p[b-qxwgjj45x3],
	.card-body small[b-qxwgjj45x3] {
		font-size: 0.875rem;
	}

	.display-5[b-qxwgjj45x3] {
		font-size: 1.75rem;
	}
}

/* Tab styling to match app theme */
.nav-tabs .nav-link[b-qxwgjj45x3] {
	color: #6c757d;
	border: 1px solid transparent;
	transition: all 0.2s ease-in-out;
}

	.nav-tabs .nav-link:hover[b-qxwgjj45x3] {
		border-color: var(--bs-border-color);
		background-color: rgba(var(--bs-primary-rgb), 0.1);
	}

	.nav-tabs .nav-link.active[b-qxwgjj45x3] {
		color: var(--primary-color);
		font-weight: 600;
		border-color: var(--bs-border-color) var(--bs-border-color) #fff;
	}

/* Badge improvements */
.badge.fs-6[b-qxwgjj45x3] {
	font-size: 1rem !important;
	font-weight: 600;
	min-width: 40px;
}

/* Card header consistency */
.card-header.bg-primary[b-qxwgjj45x3] {
	background-color: var(--primary-color) !important;
}

/* Smooth transitions for all interactive elements */
.btn[b-qxwgjj45x3],
.card[b-qxwgjj45x3],
.badge[b-qxwgjj45x3] {
	transition: all 0.2s ease-in-out;
}

/* Table improvements */
.table-hover tbody tr:hover[b-qxwgjj45x3] {
	background-color: rgba(var(--bs-primary-rgb), 0.05);
	cursor: default;
}

.fw-500[b-qxwgjj45x3] {
	font-weight: 500;
}

/* Score detail styling */
small.text-muted[b-qxwgjj45x3] {
	color: #6c757d !important;
}

/* Icon colors */
.fas[b-qxwgjj45x3],
.far[b-qxwgjj45x3] {
	color: inherit;
}

/* Ensure proper spacing in poule standings */
.table td[b-qxwgjj45x3],
.table th[b-qxwgjj45x3] {
	vertical-align: middle;
}

/* Match status badges */
.badge.bg-success i[b-qxwgjj45x3],
.badge.bg-warning i[b-qxwgjj45x3] {
	font-size: 0.875rem;
}
/* _content/ClubTournamentsBlazorApp/Components/Tournaments/TournamentCard.razor.rz.scp.css */
.tournament-card[b-il9gr4nnbd] {
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	border-radius: 1.25rem;
	overflow: hidden;
	transition: all 0.3s ease;
	position: relative;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.tournament-card[b-il9gr4nnbd]::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(56, 189, 248, 0.05));
	opacity: 0;
	mix-blend-mode: multiply;
	transition: opacity 0.2s ease;
	pointer-events: none;
}

.tournament-card:hover[b-il9gr4nnbd] {
	transform: translateY(-6px) scale(1.02);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
	cursor: pointer;
}

	.tournament-card:hover[b-il9gr4nnbd]::before {
		opacity: 1;
	}

.bg-sport[b-il9gr4nnbd] {
	background: linear-gradient(135deg, #22c55e, #16a34a);
	text-transform: capitalize;
}

.bg-status[b-il9gr4nnbd] {
	background: rgba(107, 114, 128, 0.3);
	color: #374151;
}

/* Illustration */
.tournament-illustration[b-il9gr4nnbd] {
	position: relative;
	height: 120px;
	border-radius: 1rem;
	background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(56, 189, 248, 0.08)), #f3f4f6;
	overflow: hidden;
}

	.tournament-illustration .racket-icon[b-il9gr4nnbd] {
		position: absolute;
		right: 18px;
		bottom: 14px;
		font-size: 2.4rem;
		color: rgba(107, 114, 128, 0.3);
		transform: rotate(-18deg);
	}

	.tournament-illustration .ball-glow[b-il9gr4nnbd] {
		position: absolute;
		left: 18px;
		top: 22px;
		width: 30px;
		height: 30px;
		border-radius: 999px;
		background: radial-gradient(circle, rgba(34, 197, 94, 0.6), transparent 65%);
		opacity: 0.7;
	}

/* Text clamping */
.text-truncate-2[b-il9gr4nnbd] {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Page background helper */
.tournaments-page[b-il9gr4nnbd] {
	background-color: #f9fafb;
}

/* Utility */
.list-unstyled li i[b-il9gr4nnbd] {
	width: 1.25rem;
	text-align: center;
}
/* _content/ClubTournamentsBlazorApp/Components/Tournaments/TournamentHeader.razor.rz.scp.css */
/* Tournament Header Wrapper */
.tournament-header-wrapper[b-3iqktr195k] {
    margin-bottom: 1.5rem;
}

/* Tournament Logo */
.tournament-logo[b-3iqktr195k] {
  width: 100px;
  height: 100px;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-right: 1.25rem;
  flex-shrink: 0;
  border: 2px solid #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.tournament-logo img[b-3iqktr195k] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tournament Title */
.tournament-title[b-3iqktr195k] {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.3;
}

/* Meta Information */
.tournament-meta[b-3iqktr195k] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6c757d;
}

.meta-item[b-3iqktr195k] {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.meta-item i[b-3iqktr195k] {
    color: var(--primary-color);
    opacity: 0.7;
}

.meta-item strong[b-3iqktr195k] {
    color: var(--secondary-color);
    font-weight: 600;
}

.meta-divider[b-3iqktr195k] {
    color: #dee2e6;
    font-weight: 300;
}

/* Badges */
.tournament-badges[b-3iqktr195k] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge-custom[b-3iqktr195k] {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    border-radius: 0.375rem;
    display: inline-flex;
    align-items: center;
}

.badge-event[b-3iqktr195k] {
    background-color: rgba(29, 209, 161, 0.1);
    color: var(--primary-color);
}

.badge-format[b-3iqktr195k] {
    background-color: rgba(41, 128, 185, 0.1);
    color: #2980b9;
}

.badge-public[b-3iqktr195k] {
    background-color: rgba(46, 204, 113, 0.1);
    color: #27ae60;
}

.badge-private[b-3iqktr195k] {
    background-color: rgba(241, 196, 15, 0.1);
    color: #f39c12;
}

/* Join Button */
.btn-join[b-3iqktr195k] {
    padding: 0.45rem 1rem;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    border-width: 1.5px;
}

.btn-join:hover:not(:disabled)[b-3iqktr195k] {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(29, 209, 161, 0.15);
}

.btn-joined[b-3iqktr195k] {
    cursor: default;
    opacity: 0.85;
}

.btn-joined:hover[b-3iqktr195k] {
    transform: none !important;
    box-shadow: none !important;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .tournament-logo[b-3iqktr195k] {
        width: 70px;
        height: 70px;
        margin-right: 1rem;
    }

    .tournament-title[b-3iqktr195k] {
        font-size: 1.35rem;
    }
}

@media (max-width: 575.98px) {
.tournament-logo[b-3iqktr195k] {
    width: 64px;
    height: 64px;
    margin-right: 1rem;
}

    .tournament-title[b-3iqktr195k] {
        font-size: 1.2rem;
    }

    .tournament-meta[b-3iqktr195k] {
        font-size: 0.8rem;
        gap: 0.4rem;
    }

    .meta-item[b-3iqktr195k] {
        font-size: 0.8rem;
    }

    .badge-custom[b-3iqktr195k] {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .btn-join[b-3iqktr195k] {
        padding: 0.4rem 0.9rem;
        font-size: 0.85rem;
    }
}
