/* _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/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/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/Navbar.razor.rz.scp.css */
/* Light theme utilities */
.bg-light[b-oauplgtcm1] {
	background-color: #f9fafb !important;
}

.border-light[b-oauplgtcm1] {
	border-color: #e5e7eb !important;
}

.border-1[b-oauplgtcm1] {
	border: 1px solid #d1d5db !important;
}

.form-control[b-oauplgtcm1],
.form-select[b-oauplgtcm1] {
	border-color: #d1d5db;
	color: #1f2937;
}

	.form-control:focus[b-oauplgtcm1],
	.form-select:focus[b-oauplgtcm1] {
		border-color: #22c55e;
		box-shadow: 0 0 0 0.2rem rgba(34, 197, 94, 0.25);
	}

	.form-control[b-oauplgtcm1]::placeholder {
		color: #9ca3af;
	}

/* Navbar styling */
.navbar[b-oauplgtcm1] {
	background-color: #ffffff;
}

.navbar-light .navbar-nav .nav-link[b-oauplgtcm1] {
	color: #374151;
	transition: color 0.2s ease;
}

	.navbar-light .navbar-nav .nav-link:hover[b-oauplgtcm1] {
		color: #22c55e;
	}

	.navbar-light .navbar-nav .nav-link.active[b-oauplgtcm1] {
		color: #22c55e;
		font-weight: 600;
	}

.navbar-brand[b-oauplgtcm1] {
	font-size: 1.25rem;
	font-weight: 700;
}

/* Dropdown menu styling */
.dropdown-menu[b-oauplgtcm1] {
	background-color: #ffffff;
	border: 1px solid #e5e7eb;
}

.dropdown-item[b-oauplgtcm1] {
	color: #374151;
	transition: all 0.2s ease;
}

	.dropdown-item:hover[b-oauplgtcm1] {
		background-color: #f3f4f6;
		color: #22c55e;
	}

	.dropdown-item.text-danger:hover[b-oauplgtcm1] {
		background-color: #fee2e2;
	}

.dropdown-header[b-oauplgtcm1] {
	background-color: #f9fafb;
	color: #1f2937;
}

.dropdown-divider[b-oauplgtcm1] {
	border-color: #e5e7eb;
}

/* Profile avatar */
.profile-avatar img[b-oauplgtcm1] {
	border: 2px solid #e5e7eb;
	transition: border-color 0.2s ease;
}

.navbar-light .navbar-nav .nav-link:hover .profile-avatar img[b-oauplgtcm1] {
	border-color: #22c55e;
}

/* Button styling */
.btn-outline-secondary[b-oauplgtcm1] {
	color: #6b7280;
	border-color: #d1d5db;
}

	.btn-outline-secondary:hover[b-oauplgtcm1] {
		background-color: #f3f4f6;
		border-color: #9ca3af;
		color: #374151;
	}

.btn-success[b-oauplgtcm1] {
	background-color: #22c55e;
	border-color: #22c55e;
}

	.btn-success:hover[b-oauplgtcm1] {
		background-color: #16a34a;
		border-color: #16a34a;
	}

/* Shadow utilities */
.shadow-sm[b-oauplgtcm1] {
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-lg[b-oauplgtcm1] {
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.navbar-collapse[b-oauplgtcm1] {
		background-color: #f9fafb;
		border-top: 1px solid #e5e7eb;
		margin-top: 0.5rem;
		padding: 1rem 0;
	}

	.navbar-light .navbar-nav .nav-link[b-oauplgtcm1] {
		padding: 0.5rem 1rem;
	}
}

/* Accessibility */
.btn:focus[b-oauplgtcm1],
.form-control:focus[b-oauplgtcm1],
.form-select:focus[b-oauplgtcm1],
.nav-link:focus[b-oauplgtcm1] {
	outline: 2px solid #22c55e;
	outline-offset: 2px;
}
/* _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 - 4.5rem);
    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] {
	width: 140px;
	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] {
		width: 100px;
		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/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/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/Search.razor.rz.scp.css */
/* Search Page Styling */

.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 Styling */
.pagination[b-q1dzuv07vy] {
    gap: 0.25rem;
}

.pagination .page-link[b-q1dzuv07vy] {
    border: 1px solid #dee2e6;
    color: var(--secondary-color);
    padding: 0.375rem 0.75rem;
    transition: all 0.2s ease;
    border-radius: 0.375rem;
    background-color: white;
}

    .pagination .page-link:hover[b-q1dzuv07vy] {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        color: white;
    }

    .pagination .page-link:focus[b-q1dzuv07vy] {
        box-shadow: 0 0 0 0.2rem rgba(29, 209, 161, 0.25);
        outline: none;
    }

.pagination .page-item.active .page-link[b-q1dzuv07vy] {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: 600;
    z-index: 1;
}

.pagination .page-item.disabled .page-link[b-q1dzuv07vy] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Small pagination for compact display */
.pagination-sm .page-link[b-q1dzuv07vy] {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

/* No Results Styling */
.no-results[b-q1dzuv07vy] {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .no-results i[b-q1dzuv07vy] {
        opacity: 0.5;
    }

/* Tournament Count Text */
.text-muted.small[b-q1dzuv07vy] {
    font-size: 0.875rem;
    color: #6c757d !important;
}

/* Responsive Adjustments */
@media (max-width: 575.98px) {
    .pagination-sm .page-link[b-q1dzuv07vy] {
        padding: 0.25rem 0.5rem;
        font-size: 0.8rem;
    }

    .pagination[b-q1dzuv07vy] {
        gap: 0.15rem;
    }

    .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 for page transitions */
@keyframes fadeIn-b-q1dzuv07vy {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.col-12[b-q1dzuv07vy] {
    animation: fadeIn-b-q1dzuv07vy 0.3s ease-out;
}
/* _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;
	}

/* ===== 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;
}

/* ===== 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;
	}
}
/* _content/ClubTournamentsBlazorApp/Components/Tournaments/TournamentAdmin.razor.rz.scp.css */
/* Tournament Admin Styling */

.card[b-ufi4sh6ohc] {
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Tabs Styling */
.nav-tabs[b-ufi4sh6ohc] {
    border-bottom: 2px solid #e0e0e0;
}

.nav-tabs .nav-link[b-ufi4sh6ohc] {
    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-ufi4sh6ohc] {
        color: var(--primary-color);
        border-bottom-color: rgba(29, 209, 161, 0.3);
    }

    .nav-tabs .nav-link.active[b-ufi4sh6ohc] {
        color: var(--primary-color);
        border-bottom-color: var(--primary-color);
        background-color: transparent;
    }

    .nav-tabs .nav-link .badge[b-ufi4sh6ohc] {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
        vertical-align: super;
        position: relative;
        top: -2px;
    }

.tab-content[b-ufi4sh6ohc] {
    padding-top: 1rem;
}

.tab-pane[b-ufi4sh6ohc] {
    animation: fadeIn-b-ufi4sh6ohc 0.3s ease-in;
}

@keyframes fadeIn-b-ufi4sh6ohc {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Compact tabs for better mobile experience */
.nav-tabs-compact .nav-link[b-ufi4sh6ohc] {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
}

/* Table Styling */
.table-light[b-ufi4sh6ohc] {
    background-color: #F0F9F7;
}

    .table-light th[b-ufi4sh6ohc] {
        color: var(--secondary-color);
        font-weight: 700;
        border-bottom: 2px solid var(--primary-color);
    }

.table tbody tr:hover[b-ufi4sh6ohc] {
    background-color: #F0F9F7;
}

.table-hover tbody tr[b-ufi4sh6ohc] {
    transition: background-color 0.2s ease;
}

/* Badge Styling */
.badge[b-ufi4sh6ohc] {
    font-weight: 600;
}

/* Form Styling */
.form-label[b-ufi4sh6ohc] {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.fw-600[b-ufi4sh6ohc] {
    font-weight: 600;
}

.form-control:focus[b-ufi4sh6ohc],
.form-select:focus[b-ufi4sh6ohc] {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(29, 209, 161, 0.25);
}

.form-control[b-ufi4sh6ohc],
.form-select[b-ufi4sh6ohc] {
    border-color: #ddd;
}

/* Button Styling */
.btn-primary[b-ufi4sh6ohc] {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-primary:hover[b-ufi4sh6ohc] {
        background-color: #1abc9c;
        border-color: #1abc9c;
    }

.btn-success[b-ufi4sh6ohc] {
    background-color: #27ae60;
    border-color: #27ae60;
}

    .btn-success:hover[b-ufi4sh6ohc] {
        background-color: #229954;
        border-color: #229954;
    }

.btn-danger[b-ufi4sh6ohc] {
    background-color: #e74c3c;
    border-color: #e74c3c;
}

    .btn-danger:hover[b-ufi4sh6ohc] {
        background-color: #c0392b;
        border-color: #c0392b;
    }

/* Alert Styling */
.alert-success[b-ufi4sh6ohc] {
    background-color: #E8F5F0;
    border-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Responsive Adjustments */
@media (max-width: 575.98px) {
    .nav-tabs .nav-link[b-ufi4sh6ohc] {
        padding: 0.5rem 0.5rem;
        font-size: 0.875rem;
    }

    .nav-tabs-compact .nav-link[b-ufi4sh6ohc] {
        padding: 0.4rem 0.5rem;
        font-size: 0.85rem;
    }

        .nav-tabs .nav-link i[b-ufi4sh6ohc] {
            font-size: 0.85rem;
        }

        .nav-tabs .nav-link .badge[b-ufi4sh6ohc] {
            font-size: 0.6rem;
            padding: 0.15rem 0.3rem;
        }

    .card-body[b-ufi4sh6ohc] {
        padding: 1rem;
    }

    .btn-sm[b-ufi4sh6ohc] {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 991.98px) {
    .col-lg-7[b-ufi4sh6ohc],
    .col-lg-5[b-ufi4sh6ohc] {
        margin-bottom: 1rem;
    }
}

/* Empty State Styling */
.text-center.py-5[b-ufi4sh6ohc] {
    padding: 3rem 1rem;
}

    .text-center.py-5 i[b-ufi4sh6ohc] {
        opacity: 0.5;
    }

/* Image Preview */
.img-thumbnail[b-ufi4sh6ohc] {
    border: 2px solid var(--primary-color);
    border-radius: 0.5rem;
}
/* _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: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
	position: relative;
}

.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(-4px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
	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/TournamentForm.razor.rz.scp.css */
/*@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');*/

:root[b-togaub91hd] {
	--primary-color: #1DD1A1;
	--primary-dark: #16A085;
	--secondary-color: #0F1419;
	--secondary-light: #1A2332;
	--accent-color: #00D9A3;
}

html[b-togaub91hd], body[b-togaub91hd] {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	background-color: #f8f9fa;
}

a[b-togaub91hd], .btn-link[b-togaub91hd] {
	color: var(--primary-color);
	text-decoration: none;
}

	a:hover[b-togaub91hd], .btn-link:hover[b-togaub91hd] {
		color: var(--primary-dark);
		text-decoration: underline;
	}

.btn-primary[b-togaub91hd] {
	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-togaub91hd] {
		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-togaub91hd], .btn-primary:active[b-togaub91hd] {
		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-togaub91hd] {
	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-togaub91hd] {
	color: var(--secondary-color);
	font-weight: 700;
}

.card-header[b-togaub91hd] {
	background: linear-gradient(135deg, #F0F9F7 0%, #ffffff 100%);
	border-bottom: 1px solid #E0E0E0;
}

.badge[b-togaub91hd] {
	font-weight: 600;
	padding: 0.5rem 0.75rem;
}


.form-control[b-togaub91hd], .form-select[b-togaub91hd] {
	border: 1.5px solid #ddd;
	border-radius: 8px;
	transition: all 0.3s ease;
	font-size: 1rem;
}

	.form-control:focus[b-togaub91hd], .form-select:focus[b-togaub91hd] {
		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-togaub91hd], .form-select-lg[b-togaub91hd] {
	padding: 0.75rem 1rem;
	font-size: 1rem;
}

.form-label[b-togaub91hd] {
	color: var(--secondary-color);
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.form-check-input[b-togaub91hd] {
	width: 2.5rem;
	height: 1.5rem;
	border: 2px solid #ddd;
	cursor: pointer;
	transition: all 0.3s ease;
}

	.form-check-input:checked[b-togaub91hd] {
		background-color: var(--primary-color);
		border-color: var(--primary-color);
	}

	.form-check-input:focus[b-togaub91hd] {
		border-color: var(--primary-color);
		box-shadow: 0 0 0 0.25rem rgba(29, 209, 161, 0.25);
	}

.form-check-label[b-togaub91hd] {
	cursor: pointer;
	user-select: none;
}

.table-light[b-togaub91hd] {
	background-color: #F0F9F7;
}

	.table-light th[b-togaub91hd] {
		color: var(--secondary-color);
		font-weight: 700;
		border-bottom: 2px solid var(--primary-color);
	}

.list-group-item[b-togaub91hd] {
	border-color: #E8F5F0;
	border-left: 3px solid transparent;
	transition: all 0.3s ease;
}

	.list-group-item:hover[b-togaub91hd] {
		border-left-color: var(--primary-color);
		background-color: #F0F9F7;
	}

.table-responsive[b-togaub91hd] {
	border-radius: 0.375rem;
}

.alert-success[b-togaub91hd] {
	background-color: #E8F5F0;
	border-color: var(--primary-color);
	color: var(--secondary-color);
	border-radius: 8px;
}

.alert-danger[b-togaub91hd] {
	background-color: #FFE8E8;
	border-color: #dc3545;
	color: #721c24;
	border-radius: 8px;
}

.alert-success .alert-heading[b-togaub91hd] {
	color: var(--secondary-color);
}

.text-muted[b-togaub91hd] {
	color: #6c757d !important;
}

.table tbody tr:hover[b-togaub91hd] {
	background-color: #F0F9F7;
}

h1[b-togaub91hd], h2[b-togaub91hd], h3[b-togaub91hd], h4[b-togaub91hd], h5[b-togaub91hd], h6[b-togaub91hd] {
	color: var(--secondary-color);
}

.container[b-togaub91hd] {
	max-width: 1200px;
}

code[b-togaub91hd] {
	color: var(--primary-color);
	background-color: #F0F9F7;
	padding: 0.2rem 0.4rem;
	border-radius: 0.25rem;
}

.btn:focus[b-togaub91hd], .btn:active:focus[b-togaub91hd], .btn-link.nav-link:focus[b-togaub91hd], .form-control:focus[b-togaub91hd], .form-check-input:focus[b-togaub91hd] {
	outline: 0;
	box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--primary-color);
}

html[b-togaub91hd] {
	position: relative;
	min-height: 100%;
}

body[b-togaub91hd] {
	margin-bottom: 60px;
}

.fw-600[b-togaub91hd] {
	font-weight: 600;
}

.rounded-3[b-togaub91hd] {
	border-radius: 12px;
}

.rounded-2[b-togaub91hd] {
	border-radius: 8px;
}

/* Stepper styles */
.stepper[b-togaub91hd] {
	gap: 0.5rem;
	width: 100%;
	align-items: center;
}

.step-item .step-badge[b-togaub91hd] {
	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-togaub91hd] {
	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-togaub91hd] {
	background: rgba(29,209,161,0.7);
	color: white;
}

.step-connector[b-togaub91hd] {
	height: 6px;
	background: #e9f8f3;
	border-radius: 4px;
	align-self: center;
	transition: background 0.18s ease;
}

.step-label[b-togaub91hd] {
	color: #6c757d;
	font-weight: 600;
}

/* Validation message styling */
.invalid-feedback[b-togaub91hd], .text-danger[b-togaub91hd] {
	font-size: 0.875rem;
	font-weight: 500;
}

/* Section headers styling */
h5[b-togaub91hd] {
	font-weight: 700;
	letter-spacing: 0.5px;
}

/* Input placeholder styling */
.form-control[b-togaub91hd]::placeholder, .form-select[b-togaub91hd]::placeholder {
	color: #999;
	font-style: italic;
}

/* Smooth transitions */
*[b-togaub91hd] {
	transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

#uploadWithDragAndDrop[b-togaub91hd] {
	left: 0;
	--rz-upload-button-bar-background-color: transparent;
	--rz-upload-button-bar-padding: 0;
}

	#uploadWithDragAndDrop .rz-fileupload-buttonbar .rz-fileupload-choose[b-togaub91hd] {
		width: 100%;
		text-align: center;
		font-size: 16px;
		padding: 100px 0;
	}
/* _content/ClubTournamentsBlazorApp/Components/Tournaments/TournamentHeader.razor.rz.scp.css */
/* Tournament Header Wrapper */
.tournament-header-wrapper[b-3iqktr195k] {
    animation: fadeInUp-b-3iqktr195k 0.5s ease-out;
}

@keyframes fadeInUp-b-3iqktr195k {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.tournament-hero[b-3iqktr195k] {
    padding: 2rem;
    border-radius: 0.5rem;
    position: relative;
    overflow: hidden;
}

.hero-content[b-3iqktr195k] {
    position: relative;
    z-index: 1;
}

/* Tournament Title */
.tournament-title[b-3iqktr195k] {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.3;
    display: flex;
    align-items: center;
}

.tournament-title i[b-3iqktr195k] {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Meta Information */
.tournament-meta[b-3iqktr195k] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    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.8;
}

.meta-item strong[b-3iqktr195k] {
    color: var(--primary-color);
}

.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: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 0.375rem;
    display: inline-flex;
    align-items: center;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.badge-event[b-3iqktr195k] {
    background-color: rgba(29, 209, 161, 0.15);
    color: var(--primary-color);
    border-color: rgba(29, 209, 161, 0.3);
}

.badge-format[b-3iqktr195k] {
    background-color: rgba(41, 128, 185, 0.15);
    color: #2980b9;
    border-color: rgba(41, 128, 185, 0.3);
}

.badge-public[b-3iqktr195k] {
    background-color: rgba(46, 204, 113, 0.15);
    color: #27ae60;
    border-color: rgba(46, 204, 113, 0.3);
}

.badge-private[b-3iqktr195k] {
    background-color: rgba(241, 196, 15, 0.15);
    color: #f39c12;
    border-color: rgba(241, 196, 15, 0.3);
}

/* Join Button */
.btn-join[b-3iqktr195k] {
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-join:hover[b-3iqktr195k] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 209, 161, 0.3) !important;
}

.btn-join:active[b-3iqktr195k] {
    transform: translateY(0);
}

/* Description */
.tournament-description[b-3iqktr195k] {
    border-top: 1px solid rgba(29, 209, 161, 0.2) !important;
}

.tournament-description p[b-3iqktr195k] {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .tournament-hero[b-3iqktr195k] {
        padding: 1.5rem;
    }

    .tournament-title[b-3iqktr195k] {
        font-size: 1.5rem;
    }

    .tournament-title i[b-3iqktr195k] {
        font-size: 1.25rem;
    }

    .tournament-actions[b-3iqktr195k] {
        margin-top: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .tournament-hero[b-3iqktr195k] {
        padding: 1.25rem;
    }

    .tournament-title[b-3iqktr195k] {
        font-size: 1.25rem;
        flex-direction: row;
    }

    .tournament-title i[b-3iqktr195k] {
        font-size: 1.1rem;
    }

    .tournament-meta[b-3iqktr195k] {
        font-size: 0.85rem;
        gap: 0.4rem;
    }

    .meta-item[b-3iqktr195k] {
        font-size: 0.85rem;
    }

    .badge-custom[b-3iqktr195k] {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .btn-join[b-3iqktr195k] {
        padding: 0.65rem 1.5rem;
        font-size: 0.95rem;
    }

    .tournament-description p[b-3iqktr195k] {
        font-size: 0.875rem;
    }
}

/* Dark Mode Support (optional) */
@media (prefers-color-scheme: dark) {
    .tournament-hero[b-3iqktr195k] {
        background: linear-gradient(135deg, rgba(29, 209, 161, 0.15) 0%, rgba(29, 209, 161, 0.08) 100%) !important;
    }
}
/* _content/ClubTournamentsBlazorApp/Components/Tournaments/TournamentInfo.razor.rz.scp.css */
.card[b-3jdsu0zoel] {
	border: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge[b-3jdsu0zoel] {
	font-weight: 600;
	padding: 0.5rem 0.75rem;
}

	.badge.bg-primary-first[b-3jdsu0zoel] {
		background-color: #EFBF04 !important;
		color: #fff;
	}

	.badge.bg-primary[b-3jdsu0zoel] {
		background-color: rgb(135 137 139) !important;
		color: #fff;
	}

	.badge.bg-secondary[b-3jdsu0zoel] {
		background-color: var(--secondary-light) !important;
	}

	.badge.bg-info[b-3jdsu0zoel] {
		background-color: var(--primary-color) !important;
		color: var(--secondary-color);
	}

	.badge.bg-success[b-3jdsu0zoel] {
		background-color: var(--primary-color) !important;
	}

	.badge.bg-warning[b-3jdsu0zoel] {
		background-color: #FFA500;
		color: var(--secondary-color);
	}

	.badge.bg-light[b-3jdsu0zoel] {
		background-color: #E8F5F0 !important;
		color: var(--secondary-color);
		border: 1px solid var(--primary-color);
	}

.form-control:focus[b-3jdsu0zoel], .form-select:focus[b-3jdsu0zoel] {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 0.2rem rgba(29, 209, 161, 0.25);
}

.form-control[b-3jdsu0zoel], .form-select[b-3jdsu0zoel] {
	border-color: #ddd;
}

.table-light[b-3jdsu0zoel] {
	background-color: #F0F9F7;
}

	.table-light th[b-3jdsu0zoel] {
		color: var(--secondary-color);
		font-weight: 700;
		border-bottom: 2px solid var(--primary-color);
	}

.list-group-item[b-3jdsu0zoel] {
	border-color: #E8F5F0;
	border-left: 3px solid transparent;
	transition: all 0.3s ease;
}

	.list-group-item:hover[b-3jdsu0zoel] {
		border-left-color: var(--primary-color);
		background-color: #F0F9F7;
	}

.table-responsive[b-3jdsu0zoel] {
	border-radius: 0.375rem;
}

.alert-success[b-3jdsu0zoel] {
	background-color: #E8F5F0;
	border-color: var(--primary-color);
	color: var(--secondary-color);
}

	.alert-success .alert-heading[b-3jdsu0zoel] {
		color: var(--secondary-color);
	}

.text-muted[b-3jdsu0zoel] {
	color: #6c757d !important;
}

.table tbody tr:hover[b-3jdsu0zoel] {
	background-color: #F0F9F7;
}

h1[b-3jdsu0zoel], h2[b-3jdsu0zoel], h3[b-3jdsu0zoel], h4[b-3jdsu0zoel], h5[b-3jdsu0zoel], h6[b-3jdsu0zoel] {
	color: var(--secondary-color);
}

code[b-3jdsu0zoel] {
	color: var(--primary-color);
	background-color: #F0F9F7;
	padding: 0.2rem 0.4rem;
	border-radius: 0.25rem;
}

.btn:focus[b-3jdsu0zoel], .btn:active:focus[b-3jdsu0zoel], .btn-link.nav-link:focus[b-3jdsu0zoel], .form-control:focus[b-3jdsu0zoel], .form-check-input:focus[b-3jdsu0zoel] {
	outline: 0;
	box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--primary-color);
}

.team-player[b-3jdsu0zoel] {
	position: relative;
	left: -20px;
}

/* Tabs Styling */
.nav-tabs[b-3jdsu0zoel] {
	border-bottom: 2px solid #e0e0e0;
}

.nav-tabs .nav-link[b-3jdsu0zoel] {
	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-3jdsu0zoel] {
		color: var(--primary-color);
		border-bottom-color: rgba(29, 209, 161, 0.3);
	}

	.nav-tabs .nav-link.active[b-3jdsu0zoel] {
		color: var(--primary-color);
		border-bottom-color: var(--primary-color);
		background-color: transparent;
	}

	.nav-tabs .nav-link .badge[b-3jdsu0zoel] {
		font-size: 0.65rem;
		padding: 0.2rem 0.4rem;
		vertical-align: super;
		position: relative;
		top: -2px;
	}

.tab-content[b-3jdsu0zoel] {
	padding-top: 1rem;
}

.tab-pane[b-3jdsu0zoel] {
	animation: fadeIn-b-3jdsu0zoel 0.3s ease-in;
	color: black;
}

@keyframes fadeIn-b-3jdsu0zoel {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Compact tabs for better mobile experience */
.nav-tabs-compact .nav-link[b-3jdsu0zoel] {
	padding: 0.5rem 0.75rem;
	font-size: 0.9rem;
}

/* Responsive tabs */
@media (max-width: 575.98px) {
	.nav-tabs .nav-link[b-3jdsu0zoel] {
		padding: 0.5rem 0.5rem;
		font-size: 0.875rem;
	}

	.nav-tabs-compact .nav-link[b-3jdsu0zoel] {
		padding: 0.4rem 0.5rem;
		font-size: 0.85rem;
	}

		.nav-tabs .nav-link i[b-3jdsu0zoel] {
			font-size: 0.85rem;
		}

		.nav-tabs .nav-link .badge[b-3jdsu0zoel] {
			font-size: 0.6rem;
			padding: 0.15rem 0.3rem;
		}
}

/* Pagination Styling */
.pagination[b-3jdsu0zoel] {
	gap: 0.25rem;
}

.pagination .page-link[b-3jdsu0zoel] {
	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-3jdsu0zoel] {
		background-color: var(--primary-color);
		border-color: var(--primary-color);
		color: white;
	}

	.pagination .page-link:focus[b-3jdsu0zoel] {
		box-shadow: 0 0 0 0.2rem rgba(29, 209, 161, 0.25);
	}

.pagination .page-item.active .page-link[b-3jdsu0zoel] {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: white;
	font-weight: 600;
}

.pagination .page-item.disabled .page-link[b-3jdsu0zoel] {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Responsive pagination */
@media (max-width: 575.98px) {
	.pagination-sm .page-link[b-3jdsu0zoel] {
		padding: 0.25rem 0.5rem;
		font-size: 0.8rem;
	}
}
/* _content/ClubTournamentsBlazorApp/Components/Tournaments/TournamentOverview.razor.rz.scp.css */
.cards-row[b-ueg3uzxd62] {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding-bottom: 0.5rem;
}

.tournament-card[b-ueg3uzxd62] {
	width: 100%;
	overflow: hidden;
}

.tournament-image-col[b-ueg3uzxd62] {
	width: 210px;
	min-width: 210px;
}

.tournament-image[b-ueg3uzxd62] {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 180px;
}

.tournament-details-col[b-ueg3uzxd62] {
	flex: 1;
	min-width: 0;
}

.tournament-actions-col[b-ueg3uzxd62] {
	min-width: 160px;
	border-left: 1px solid #dee2e6;
}

.no-results[b-ueg3uzxd62] {
	min-height: 220px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
}

/* Responsive aanpassingen voor mobiel */
@media (max-width: 767px) {
	.tournament-stats[b-ueg3uzxd62]{
		display:none;
	}

	.tournament-card .row[b-ueg3uzxd62] {
		flex-direction: column;
	}

	.tournament-image-col[b-ueg3uzxd62] {
		width: 100%;
		min-width: 100%;
	}

	.tournament-image[b-ueg3uzxd62] {
		height: 200px;
	}

	.tournament-actions-col[b-ueg3uzxd62] {
		border-left: none;
		border-top: 1px solid #dee2e6;
		min-width: 100%;
	}

		.tournament-actions-col .card-body[b-ueg3uzxd62] {
			flex-direction: row !important;
			justify-content: space-between !important;
			align-items: center !important;
		}

		.tournament-actions-col .d-flex.flex-column[b-ueg3uzxd62] {
			flex-direction: row !important;
		}
}
/* _content/ClubTournamentsBlazorApp/Components/Tournaments/TournamentRowComponent.razor.rz.scp.css */
.tournament-card[b-jaiecz13ef] {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
    max-width: 100%;
}

.tournament-card:hover[b-jaiecz13ef] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.tournament-image-wrapper[b-jaiecz13ef] {
    position: relative;
    width: 180px;
    height: 100%;
    min-height: 140px;
    overflow: hidden;
}

.tournament-image-col[b-jaiecz13ef] {
    width: 180px;
    min-width: 180px;
}

.tournament-image[b-jaiecz13ef] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tournament-title[b-jaiecz13ef] {
    color: var(--primary-color, #01d099);
    font-weight: 600;
    transition: color 0.2s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.tournament-title:hover[b-jaiecz13ef] {
    color: var(--secondary-color, #00b882);
}

.tournament-meta[b-jaiecz13ef] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: 100%;
}

.tournament-meta i[b-jaiecz13ef] {
    opacity: 0.7;
    flex-shrink: 0;
}

.tournament-meta span[b-jaiecz13ef] {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tournament-location[b-jaiecz13ef],
.tournament-dates[b-jaiecz13ef] {
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: inline;
}

.tournament-info .badge[b-jaiecz13ef] {
    font-weight: 500;
    padding: 0.35rem 0.65rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tournament-description[b-jaiecz13ef] {
    line-height: 1.5;
    margin-top: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.tournament-details-col[b-jaiecz13ef] {
    flex: 1;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.tournament-actions-col[b-jaiecz13ef] {
    width: 140px;
    min-width: 140px;
    border-left: 1px solid #dee2e6;
}

.tournament-actions-col .btn[b-jaiecz13ef] {
    white-space: nowrap;
}

/* Responsive voor tablet */
@media (max-width: 991px) {
    .tournament-actions-col[b-jaiecz13ef] {
        width: 100px;
        min-width: 100px;
    }
}

/* Responsive voor mobiel */
@media (max-width: 767px) {
    .tournament-card[b-jaiecz13ef] {
        margin-left: 0;
        margin-right: 0;
    }

    .tournament-card .row[b-jaiecz13ef] {
        flex-direction: column;
        margin: 0;
    }

    .tournament-image-wrapper[b-jaiecz13ef],
    .tournament-image-col[b-jaiecz13ef] {
        width: 100%;
        min-width: 100%;
        height: 200px;
        padding: 0;
    }

    .tournament-image[b-jaiecz13ef] {
        height: 200px;
    }

    .tournament-details-col[b-jaiecz13ef] {
        padding: 0;
        width: 100%;
        min-width: 0;
    }

    .tournament-details-col .card-body[b-jaiecz13ef] {
        padding: 0.75rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .tournament-title[b-jaiecz13ef] {
        font-size: 1.1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .tournament-meta[b-jaiecz13ef] {
        flex-direction: column;
        gap: 0.25rem;
        font-size: 0.75rem;
    }

    .tournament-meta span[b-jaiecz13ef] {
        display: block;
        width: 100%;
    }

    .tournament-info[b-jaiecz13ef] {
        gap: 0.25rem !important;
        flex-wrap: wrap;
    }

    .tournament-description[b-jaiecz13ef] {
        font-size: 0.75rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .tournament-actions-col[b-jaiecz13ef] {
        width: 100%;
        min-width: 100%;
        padding: 0;
        border-left: none;
        border-top: 1px solid #dee2e6;
    }

    .tournament-actions-col .card-body[b-jaiecz13ef] {
        flex-direction: row !important;
        gap: 0.5rem !important;
        padding: 0.75rem !important;
    }

    .tournament-actions-col .btn[b-jaiecz13ef] {
        flex: 1;
        font-size: 0.75rem;
        padding: 0.375rem 0.5rem;
        min-width: 0;
    }

    .tournament-actions-col .btn i[b-jaiecz13ef] {
        margin-right: 0.25rem;
    }
}

/* Extra small devices */
@media (max-width: 575px) {
    .tournament-card[b-jaiecz13ef] {
        border-radius: 0.375rem;
        margin: 0;
    }

    .tournament-card .card-body[b-jaiecz13ef] {
        padding: 0.5rem !important;
    }

    .tournament-title[b-jaiecz13ef] {
        font-size: 1rem;
        line-height: 1.3;
    }

    .tournament-meta[b-jaiecz13ef] {
        font-size: 0.7rem;
    }

    .tournament-info[b-jaiecz13ef] {
        gap: 0.25rem !important;
    }

    .tournament-info .badge[b-jaiecz13ef] {
        font-size: 0.65rem;
        padding: 0.25rem 0.4rem;
    }

    .tournament-description[b-jaiecz13ef] {
        font-size: 0.7rem;
        line-height: 1.4;
    }

    .tournament-actions-col .card-body[b-jaiecz13ef] {
        padding: 0.5rem !important;
        gap: 0.35rem !important;
    }

    .tournament-actions-col .btn[b-jaiecz13ef] {
        font-size: 0.7rem;
        padding: 0.3rem 0.4rem;
    }

    .tournament-actions-col .btn i[b-jaiecz13ef] {
        font-size: 0.8rem;
    }
}

/* _content/ClubTournamentsBlazorApp/Components/Tournaments/UpcomingMatchesTimeline.razor.rz.scp.css */
/* Timeline Container */
.timeline[b-qt213dbpx1] {
  position: relative;
  padding-left: 26px;
}

/* Timeline vertical line */
.timeline[b-qt213dbpx1]::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-qt213dbpx1] {
    position: relative;
    margin-bottom: 1.5rem;
    padding-left: 15px;
}

.timeline-item:last-child[b-qt213dbpx1] {
    margin-bottom: 0;
}

/* Timeline Marker */
.timeline-marker[b-qt213dbpx1] {
    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-qt213dbpx1] {
    font-size: 8px;
    color: var(--primary-color);
}

/* Urgent match styling */
.timeline-item-urgent .timeline-marker[b-qt213dbpx1] {
    border-color: #ffc107;
    background: #fff3cd;
    animation: pulse-b-qt213dbpx1 2s infinite;
}

.timeline-item-urgent .timeline-marker i[b-qt213dbpx1] {
    color: #ffc107;
    font-size: 10px;
}

@keyframes pulse-b-qt213dbpx1 {
    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-qt213dbpx1] {
    position: relative;
}

/* Timeline Card */
.timeline-card[b-qt213dbpx1] {
    border: 1px solid #e0e0e0;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.timeline-card:hover[b-qt213dbpx1] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.timeline-item-urgent .timeline-card[b-qt213dbpx1] {
    border-color: #ffc107;
    background: #fffef7;
}

/* Match Versus Section */
.match-versus[b-qt213dbpx1] {
    padding: 0.5rem 0;
}

.match-versus img[b-qt213dbpx1] {
    border: 2px solid var(--primary-color);
}

/* Team Avatar Styling for Doubles */
.team-avatar[b-qt213dbpx1] {
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.team-avatar:hover[b-qt213dbpx1] {
    transform: scale(1.1);
    z-index: 10 !important;
}

/* Doubles Team Avatar Container */
.d-flex.justify-content-center[b-qt213dbpx1] {
    position: relative;
}

    .d-flex.justify-content-center .team-avatar:first-child[b-qt213dbpx1] {
        position: relative;
        z-index: 2;
    }

    .d-flex.justify-content-center .team-avatar:last-child[b-qt213dbpx1] {
        position: relative;
        z-index: 1;
    }

/* Countdown Timer */
.countdown-timer[b-qt213dbpx1] {
    font-size: 0.9rem;
}

.countdown-timer .fw-bold[b-qt213dbpx1] {
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .timeline[b-qt213dbpx1] {
        padding-left: 20px;
    }

    .timeline[b-qt213dbpx1]::before {
        left: 6px;
    }

    .timeline-marker[b-qt213dbpx1] {
        left: -21px;
        width: 16px;
        height: 16px;
    }

    .timeline-marker i[b-qt213dbpx1] {
        font-size: 6px;
    }

    .timeline-item-urgent .timeline-marker i[b-qt213dbpx1] {
        font-size: 8px;
    }

    .match-versus img[b-qt213dbpx1] {
        width: 35px !important;
        height: 35px !important;
    }

    .match-versus .fw-500[b-qt213dbpx1] {
        font-size: 0.75rem;
    }

    .timeline-card .row > div[b-qt213dbpx1] {
        text-align: center;
    }

    .countdown-timer[b-qt213dbpx1] {
        text-align: center;
        margin-top: 0.5rem;
    }

    .btn-sm[b-qt213dbpx1] {
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* Badge styling */
.badge.bg-secondary[b-qt213dbpx1] {
    display: inline-block;
}

/* Card body spacing */
.timeline-card .card-body[b-qt213dbpx1] {
    background: white;
    border-radius: 0.75rem;
}

.timeline-item-urgent .timeline-card .card-body[b-qt213dbpx1] {
    background: #fffef7;
    border-radius: 0.75rem;
}

/* Animation for new items */
@keyframes slideIn-b-qt213dbpx1 {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-item[b-qt213dbpx1] {
    animation: slideIn-b-qt213dbpx1 0.3s ease-out;
}

/* Round name badge at bottom */
.border-top[b-qt213dbpx1] {
    border-color: #e0e0e0 !important;
}
