@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #F5F8FA;
  color: #424242;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

body {
  font-size: 1rem;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000000;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: #424242;
}

a {
  color: #2E7D32;
  text-decoration: none;
  transition: all 0.15s ease-in-out;
}
a:hover {
  color: #4CAF50;
}

.text-muted {
  color: #7E8299;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.5s ease-out forwards;
  opacity: 0;
}

.animate-scale-in {
  animation: scaleIn 0.3s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

.delay-6 {
  animation-delay: 0.6s;
}

.delay-7 {
  animation-delay: 0.7s;
}

.delay-8 {
  animation-delay: 0.8s;
}

.delay-9 {
  animation-delay: 0.9s;
}

.delay-10 {
  animation-delay: 1s;
}

.auth-wrapper {
  display: flex;
  min-height: 100vh;
  background-color: #F5F8FA;
}
@media (max-width: 767px) {
  .auth-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: #2E7D32;
  }
}

.auth-left {
  flex: 1;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  background-color: #FFFFFF;
  animation: fadeInUp 0.5s ease-out both;
}
@media (max-width: 767px) {
  .auth-left {
    width: 100%;
    max-width: 400px;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  }
}

.auth-right {
  flex: 1;
  background-color: #2E7D32;
  background-image: radial-gradient(circle at 20% 80%, rgba(76, 175, 80, 0.4) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(27, 94, 32, 0.6) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.6s ease-out 0.1s both;
}
@media (max-width: 767px) {
  .auth-right {
    display: none;
  }
}
.auth-right::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 60px solid rgba(255, 255, 255, 0.05);
  top: -100px;
  right: -100px;
}
.auth-right::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 40px solid rgba(255, 255, 255, 0.05);
  bottom: -80px;
  left: -80px;
}

.auth-brand {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #FFFFFF;
}
.auth-brand__logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.3);
  margin: 0 auto 2rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}
.auth-brand__logo-text {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  border: 4px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 auto 2rem;
}
.auth-brand__name {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.auth-brand__slogan {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 3rem;
  line-height: 1.5;
}
.auth-brand__stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
.auth-brand__stats-item {
  text-align: center;
}
.auth-brand__stats-item strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
}
.auth-brand__stats-item span {
  font-size: 0.875rem;
  opacity: 0.75;
}

.auth-form-header {
  margin-bottom: 2rem;
}
.auth-form-header h1 {
  font-size: 1.75rem;
  color: #1A1A2E;
  margin-bottom: 0.25rem;
}
.auth-form-header p {
  color: #7E8299;
  font-size: 0.875rem;
  margin: 0;
}

.auth-logo-small {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: rgba(46, 125, 50, 0.1);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #2E7D32;
  margin-bottom: 1.5rem;
}

.auth-alert {
  background-color: rgba(241, 65, 108, 0.08);
  border: 1px solid rgba(241, 65, 108, 0.3);
  border-radius: 0.5rem;
  padding: 1rem;
  color: #F1416C;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.auth-forgot {
  text-align: right;
  margin: 0.5rem 0 1rem;
}
.auth-forgot a {
  font-size: 0.875rem;
  color: #7E8299;
}
.auth-forgot a:hover {
  color: #2E7D32;
}

.auth-footer-text {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: #7E8299;
}
.auth-footer-text a {
  color: #2E7D32;
  font-weight: 600;
}

.auth-card {
  width: 100%;
  max-width: 400px;
  margin: auto;
  background-color: #FFFFFF;
  border-radius: 1.5rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  padding: 3rem 2rem;
  animation: scaleIn 0.3s ease-out both;
}
@media (max-width: 767px) {
  .auth-card {
    border-radius: 1rem;
    padding: 2rem 1rem;
  }
}

.auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: #2E7D32;
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 1rem;
  margin: 0 auto 1.5rem;
}

.auth-footer {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: #7E8299;
}
.auth-footer a {
  color: #2E7D32;
}

.hero {
  background-color: #2E7D32;
  background-image: radial-gradient(circle at 10% 90%, rgba(27, 94, 32, 0.7) 0%, transparent 50%), radial-gradient(circle at 90% 10%, rgba(76, 175, 80, 0.3) 0%, transparent 50%);
  color: #FFFFFF;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero {
    padding: 3rem 1rem;
    min-height: 40vh;
    display: flex;
    align-items: center;
  }
}
.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 80px solid rgba(255, 255, 255, 0.04);
  top: -150px;
  right: -100px;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease-out both;
}
.hero__title {
  font-size: 3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 2rem;
  }
}
.hero__subtitle {
  font-size: 1.125rem;
  opacity: 0.85;
  margin-bottom: 2rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.public-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  overflow-x: clip;
}
.public-layout main {
  flex: 1;
  width: 100%;
  min-width: 0;
}

.section {
  padding: 3rem 2rem;
}
@media (max-width: 767px) {
  .section {
    padding: 2rem 1rem;
  }
}
.section--gray {
  background-color: #F5F8FA;
}
.section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.section__header h2 {
  font-size: 2rem;
  color: #1A1A2E;
  margin-bottom: 0.5rem;
}
.section__header p {
  color: #7E8299;
  max-width: 600px;
  margin: 0 auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .container {
    padding: 0 1rem;
  }
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
@media (max-width: 767px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
}

.article-card {
  background-color: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  transition: all 0.3s ease-in-out;
}
.article-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}
.article-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background-color: rgba(46, 125, 50, 0.1);
}
.article-card__body {
  padding: 1.5rem;
}
.article-card__category {
  font-size: 0.75rem;
  font-weight: 700;
  color: #2E7D32;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}
.article-card__title {
  font-size: 1.125rem;
  color: #1A1A2E;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.article-card__excerpt {
  color: #7E8299;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.article-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #7E8299;
}

.footer-public {
  background-color: #1B5E20;
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 2rem 1.5rem;
}
.footer-public__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-public__brand .footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}
.footer-public__brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}
.footer-public__title {
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.footer-public__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-public__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-public__links a:hover {
  color: #FFFFFF;
}
.footer-public__email-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}
.footer-public__email-link:hover {
  color: #FFFFFF;
}
.footer-public__email-icon {
  margin-right: 0.4rem;
}
.footer-public__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.player-layout {
  display: flex;
  min-height: 100vh;
  background-color: #F5F8FA;
}

.player-main {
  flex: 1;
  margin-left: 260px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
@media (max-width: 767px) {
  .player-main {
    margin-left: 0;
  }
}

.player-page-header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E4E6EF;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .player-page-header {
    padding: 1rem;
  }
}
.player-page-header__title h1 {
  font-size: 1.5rem;
  color: #1A1A2E;
  margin: 0;
}
.player-page-header__title p {
  color: #7E8299;
  font-size: 0.875rem;
  margin: 0.25rem 0 0;
}

.player-content {
  flex: 1;
  padding: 2rem;
}
@media (max-width: 767px) {
  .player-content {
    padding: 1rem;
  }
}

.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.player-status-card {
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  border-radius: 1rem;
  padding: 2rem;
  color: #FFFFFF;
}
.player-status-card--blue {
  background: linear-gradient(135deg, #1565C0 0%, #1976D2 100%);
}
.player-status-card--dark {
  background: linear-gradient(135deg, #1B5E20 0%, #1A1A2E 100%);
}
.player-status-card--green {
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
}
.player-status-card--red {
  background: linear-gradient(135deg, #C62828 0%, #F1416C 100%);
}
.player-status-card--orange {
  background: linear-gradient(135deg, #E65100 0%, #FF8F00 100%);
}
.player-status-card__label {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 0.25rem;
}
.player-status-card__value {
  font-size: 1.5rem;
  font-weight: 700;
}
.player-status-card__value small {
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.8;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1rem;
  background-color: #FFFFFF;
  border-radius: 1rem;
  text-decoration: none;
  color: #1A1A2E;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
  text-align: center;
}
.quick-link i {
  font-size: 1.5rem;
  color: #2E7D32;
}
.quick-link span {
  font-size: 0.875rem;
  font-weight: 600;
}
.quick-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  color: #2E7D32;
}

.summoning-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.summoning-list__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem;
  background-color: #F5F8FA;
  border-radius: 0.5rem;
}
.summoning-list__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 44px;
  color: #2E7D32;
}
.summoning-list__date strong {
  font-size: 1.125rem;
}
.summoning-list__date span {
  font-size: 0.75rem;
  color: #7E8299;
}
.summoning-list__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.summoning-list__opponent {
  font-weight: 600;
  color: #1A1A2E;
}
.summoning-list__location {
  font-size: 0.875rem;
  color: #7E8299;
}

.match-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.match-list__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: #F5F8FA;
}
.match-list__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 44px;
  color: #2E7D32;
}
.match-list__date strong {
  font-size: 1.125rem;
}
.match-list__date span {
  font-size: 0.75rem;
  color: #7E8299;
}
.match-list__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.875rem;
  color: #7E8299;
}

.team-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .team-page-grid {
    grid-template-columns: 1fr;
  }
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 2rem;
}

.profile-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2E7D32, #4CAF50);
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.profile-table {
  width: 100%;
  border-collapse: collapse;
}
.profile-table tr {
  border-bottom: 1px solid #E4E6EF;
}
.profile-table tr:last-child {
  border-bottom: none;
}
.profile-table th {
  padding: 0.5rem 1rem 0.5rem 0;
  font-weight: 600;
  color: #7E8299;
  font-size: 0.875rem;
  width: 140px;
  vertical-align: top;
}
.profile-table td {
  padding: 0.5rem 0;
  color: #1A1A2E;
  font-size: 0.875rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.form-hint {
  font-size: 0.875rem;
  color: #7E8299;
  margin-top: 0.25rem;
}

.form-control--disabled {
  background-color: #F5F8FA;
  opacity: 0.7;
  cursor: not-allowed;
}

.card__body--chart {
  display: flex;
  justify-content: center;
  max-height: 300px;
}

.progress-bar__legend {
  font-size: 0.875rem;
  color: #7E8299;
  margin-top: 0.5rem;
}

.player-flash-wrapper {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .player-flash-wrapper {
    padding: 0 1rem;
  }
}

.alert {
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.alert--warning {
  background-color: rgba(255, 199, 0, 0.15);
  color: #665000;
  border-left: 4px solid #FFC700;
}
.alert--danger {
  background-color: rgba(241, 65, 108, 0.1);
  color: #F1416C;
  border-left: 4px solid #F1416C;
}

.card__header--between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card__body {
  padding: 1.5rem;
}

.mb-xl {
  margin-bottom: 2rem;
}

.mt-xl {
  margin-top: 2rem;
}

.text-muted {
  color: #7E8299;
}

.summoning-status {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem 0.75rem;
  border-radius: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.summoning-status--convoque {
  background-color: rgba(46, 125, 50, 0.1);
  color: #2E7D32;
}
.summoning-status--absent {
  background-color: rgba(241, 65, 108, 0.1);
  color: #F1416C;
}
.summoning-status--blesse {
  background-color: rgba(255, 199, 0, 0.15);
  color: #997700;
}

@media (max-width: 767px) {
  .pl-grid {
    display: block !important;
  }
  .pl-grid > * {
    margin-bottom: 1.5rem;
  }
  .pl-page {
    padding: 1rem !important;
  }
  .pl-panel {
    padding: 1rem !important;
  }
  .fc .fc-toolbar.fc-header-toolbar {
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
  }
  .fc-daygrid-event {
    font-size: 0.65rem !important;
  }
}
@media (max-width: 767px) {
  .pd-grid {
    grid-template-columns: 1fr !important;
  }
  .pd-grid > * {
    min-width: 0 !important;
  }
  .pd-kpis {
    grid-template-columns: 1fr !important;
  }
  .pd-kpis > * {
    min-width: 0 !important;
  }
  .pd-topbar {
    flex-wrap: wrap !important;
    padding: 1rem !important;
  }
  .pd-inner {
    padding: 1rem !important;
  }
  .pd-results {
    overflow-x: auto !important;
  }
}
.progress-bar {
  height: 8px;
  background-color: #E4E6EF;
  border-radius: 1.5rem;
  overflow: hidden;
}
.progress-bar__fill {
  height: 100%;
  background-color: #2E7D32;
  border-radius: 1.5rem;
  transition: width 0.6s ease;
}
.progress-bar--warning .progress-bar__fill {
  background-color: #FFC700;
}
.progress-bar--danger .progress-bar__fill {
  background-color: #F1416C;
}

.main-sidebar {
  background-color: #1B5E20 !important;
}
.main-sidebar .brand-link {
  background-color: rgba(0, 0, 0, 0.1) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #FFFFFF !important;
}
.main-sidebar .brand-link .brand-text {
  font-weight: 700 !important;
}

.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link {
  color: rgba(255, 255, 255, 0.75) !important;
}
.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: #FFFFFF !important;
}
.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #2E7D32 !important;
  color: #FFFFFF !important;
}

.main-header.navbar {
  background-color: #FFFFFF !important;
  border-bottom: 1px solid #E4E6EF !important;
}
.main-header.navbar .nav-link {
  color: #424242 !important;
}
.main-header.navbar .nav-link:hover {
  color: #2E7D32 !important;
}

.btn-primary {
  background-color: #2E7D32 !important;
  border-color: #2E7D32 !important;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #4CAF50 !important;
  border-color: #4CAF50 !important;
}

.card {
  border-radius: 1rem !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  border: none !important;
}
.card .card-header {
  background-color: #FFFFFF !important;
  border-bottom: 1px solid #E4E6EF !important;
  border-radius: 1rem 1rem 0 0 !important;
  font-weight: 600;
  color: #1A1A2E;
}

.content-wrapper {
  background-color: #F5F8FA !important;
}

.content-wrapper .content {
  padding-top: 2rem;
}

.content-header {
  padding: 1rem 2rem !important;
}
.content-header h1 {
  font-size: 1.5rem !important;
  color: #1A1A2E !important;
}

.info-box {
  border-radius: 1rem !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}
.info-box .info-box-icon {
  border-radius: 1rem 0 0 1rem !important;
}

.info-box-icon.bg-primary {
  background-color: #2E7D32 !important;
}

.small-box {
  border-radius: 1rem !important;
  overflow: hidden;
}

.pagination .page-item.active .page-link {
  background-color: #2E7D32 !important;
  border-color: #2E7D32 !important;
}
.pagination .page-link {
  color: #2E7D32 !important;
}
.pagination .page-link:hover {
  background-color: rgba(46, 125, 50, 0.08) !important;
}

.btn, .btn-auth, .btn-icon, .btn-ghost, .btn-danger, .btn-secondary, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.625rem 1.5rem;
  font-size: 1rem;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 600;
  line-height: 1.5;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  user-select: none;
}
.btn:disabled, .btn-auth:disabled, .btn-icon:disabled, .btn-ghost:disabled, .btn-danger:disabled, .btn-secondary:disabled, .btn-primary:disabled, .btn--disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.btn--sm {
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
}
.btn--lg {
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
}
.btn--block {
  width: 100%;
}

.btn-primary {
  background-color: #2E7D32;
  border-color: #2E7D32;
  color: #FFFFFF;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #4CAF50;
  border-color: #4CAF50;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.35);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-secondary {
  background-color: transparent;
  border-color: #2E7D32;
  color: #2E7D32;
}
.btn-secondary:hover, .btn-secondary:focus {
  background-color: #2E7D32;
  color: #FFFFFF;
  transform: translateY(-1px);
}

.btn-danger {
  background-color: #F1416C;
  border-color: #F1416C;
  color: #FFFFFF;
}
.btn-danger:hover, .btn-danger:focus {
  background-color: #ee1b4f;
  border-color: #ee1b4f;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(241, 65, 108, 0.35);
}

.btn-ghost {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}
.btn-ghost:hover, .btn-ghost:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.btn-icon {
  padding: 0.5rem;
  width: 2.25rem;
  height: 2.25rem;
  background-color: transparent;
  border-color: #E4E6EF;
  color: #7E8299;
}
.btn-icon:hover {
  border-color: #2E7D32;
  color: #2E7D32;
}

.btn-auth {
  width: 100%;
  background-color: #2E7D32;
  border-color: #2E7D32;
  color: #FFFFFF;
  padding: 0.875rem;
  font-size: 1.125rem;
  border-radius: 1rem;
  margin-top: 1rem;
}
.btn-auth:hover, .btn-auth:focus {
  background-color: #4CAF50;
  border-color: #4CAF50;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
  transform: translateY(-1px);
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #424242;
  margin-bottom: 0.25rem;
}

.form-control {
  transition: all 0.3s ease-in-out;
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: #424242;
  background-color: #FFFFFF;
  border: 1.5px solid #E4E6EF;
  border-radius: 0.5rem;
  appearance: none;
}
.form-control::placeholder {
  color: #7E8299;
}
.form-control:focus {
  outline: none;
  border-color: #2E7D32;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
}
.form-control.is-invalid {
  border-color: #F1416C;
}
.form-control.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(241, 65, 108, 0.15);
}

.form-error {
  color: #F1416C;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-separator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 2rem 0;
  color: #7E8299;
  font-size: 0.875rem;
  font-weight: 600;
}
.form-separator::before, .form-separator::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #E4E6EF;
}

.form-group-light {
  margin-bottom: 2rem;
}
.form-group-light label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: #1A1A2E;
  margin-bottom: 8px;
}
.form-group-light .form-control-light, .form-group-light .form-select-light {
  width: 100%;
  background-color: #F8F9FB;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1A1A2E;
  transition: all 0.2s ease;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}
.form-group-light .form-control-light::placeholder, .form-group-light .form-select-light::placeholder {
  color: #A0A5B5;
}
.form-group-light .form-control-light:focus, .form-group-light .form-select-light:focus {
  outline: none;
  background-color: #FFFFFF;
  border: 1px solid #00B16E;
  box-shadow: 0 0 0 4px rgba(0, 177, 110, 0.1);
}
.form-group-light .form-select-light {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238E94A5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
}

.card {
  background-color: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  border: none;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.card--hoverable {
  transition: all 0.3s ease-in-out;
}
.card--hoverable:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}
.card__header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #E4E6EF;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card__header h2,
.card__header h3,
.card__header h4 {
  margin: 0;
  font-size: 1.125rem;
}
.card__body {
  padding: 1.5rem;
}
@media (max-width: 767px) {
  .card__body {
    padding: 1rem;
  }
}
.card__footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #E4E6EF;
  background-color: rgba(245, 248, 250, 0.5);
}

.stat-card {
  background: #FFFFFF;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.stat-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.stat-card__icon--primary {
  background-color: rgba(46, 125, 50, 0.1);
  color: #2E7D32;
}
.stat-card__icon--warning {
  background-color: rgba(255, 199, 0, 0.1);
  color: #FFC700;
}
.stat-card__icon--info {
  background-color: rgba(0, 158, 247, 0.1);
  color: #009EF7;
}
.stat-card__content {
  flex: 1;
}
.stat-card__title {
  color: #7E8299;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  display: block;
}
.stat-card__value {
  color: #424242;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 0.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}
.navbar--scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.navbar__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}
.navbar__brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.navbar__brand-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: #2E7D32;
  line-height: 1.1;
}
.navbar__brand-text span {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  color: #7E8299;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .navbar__nav {
    display: none;
  }
  .navbar__nav--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    gap: 0.5rem;
  }
}
.navbar__link {
  color: #424242;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  transition: color 0.2s ease;
  position: relative;
}
.navbar__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2E7D32;
  transition: width 0.25s ease;
}
.navbar__link:hover, .navbar__link--active {
  color: #2E7D32;
}
.navbar__link:hover::after, .navbar__link--active::after {
  width: 100%;
}
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.25rem;
}
.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #424242;
  border-radius: 2px;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .navbar__burger {
    display: flex;
  }
}

.navbar--player {
  background-color: #2E7D32;
  box-shadow: none;
}
.navbar--player .navbar__brand-text {
  color: #FFFFFF;
}
.navbar--player .navbar__brand-text span {
  color: rgba(255, 255, 255, 0.75);
}
.navbar--player .navbar__link {
  color: rgba(255, 255, 255, 0.85);
}
.navbar--player .navbar__link::after {
  background-color: #FFFFFF;
}
.navbar--player .navbar__link:hover, .navbar--player .navbar__link--active {
  color: #FFFFFF;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 199;
  cursor: pointer;
}
.sidebar-overlay--visible {
  display: block;
}

.mobile-topbar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: #FFFFFF;
  z-index: 198;
  align-items: center;
  padding: 0 1rem;
  gap: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .mobile-topbar {
    display: flex;
  }
}
.mobile-topbar__title {
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: #1A1A2E;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  flex: 1;
}
.mobile-topbar__btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #F6F7F9;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1A1A2E;
  font-size: 1rem;
  flex-shrink: 0;
}
.mobile-topbar__btn:hover {
  background: rgba(142, 148, 165, 0.15);
}

.layout-with-sidebar {
  display: flex;
  min-height: 100vh;
  background-color: #EFEFEF;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  position: relative;
  padding: 1rem;
}
@media (min-width: 768px) and (max-width: 991px) {
  .layout-with-sidebar {
    padding: 0.5rem 0 0.5rem 0.5rem;
  }
}
@media (max-width: 767px) {
  .layout-with-sidebar {
    padding: 0;
    padding-top: 56px;
  }
}
.layout-with-sidebar .main-content {
  flex: 1;
  margin-left: 280px;
  min-width: 0;
  background-color: #F8F9FB;
  border-radius: 0 1rem 1rem 0;
  padding: 3rem;
}
@media (min-width: 768px) and (max-width: 991px) {
  .layout-with-sidebar .main-content {
    margin-left: 64px;
    border-radius: 0 1rem 1rem 0;
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .layout-with-sidebar .main-content {
    margin-left: 0;
    border-radius: 0;
    padding: 1rem;
  }
}

.w-sidebar {
  position: fixed;
  top: 1rem;
  left: 1rem;
  bottom: 1rem;
  width: 280px;
  background-color: #FFFFFF;
  border-radius: 1rem 0 0 1rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 200;
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.03);
  transition: width 0.25s ease, transform 0.3s ease;
}
@media (min-width: 768px) and (max-width: 991px) {
  .w-sidebar {
    width: 64px;
    top: 0.5rem;
    left: 0.5rem;
    bottom: 0.5rem;
  }
  .w-sidebar span:not(.w-sidebar__icon) {
    display: none;
  }
  .w-sidebar .w-sidebar__brand-text {
    display: none;
  }
  .w-sidebar .w-sidebar__footer {
    display: none;
  }
  .w-sidebar .w-sidebar__menu--bottom {
    display: none;
  }
  .w-sidebar .w-sidebar__link {
    justify-content: center;
    padding: 10px;
    gap: 0;
  }
  .w-sidebar .w-sidebar__header {
    justify-content: center;
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .w-sidebar {
    transform: translateX(-110%);
    border-radius: 1rem;
    top: 0.5rem;
    left: 0.5rem;
    bottom: 0.5rem;
  }
  .w-sidebar--open {
    transform: translateX(0);
    z-index: 200;
  }
}
.w-sidebar__header {
  padding: 2rem 2rem 1.5rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.w-sidebar__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}
.w-sidebar__brand:hover {
  text-decoration: none;
}
.w-sidebar__logo-box {
  width: 36px;
  height: 36px;
  background-color: #FF6B00;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.w-sidebar__brand-text {
  display: flex;
  flex-direction: column;
}
.w-sidebar__brand-title {
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: #1A1A2E;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  line-height: 1.1;
}
.w-sidebar__brand-subtitle {
  font-size: 0.55rem;
  font-weight: 700;
  color: #7E8299;
  letter-spacing: 1px;
}
.w-sidebar__nav {
  flex: 1;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.w-sidebar__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.w-sidebar__menu--bottom {
  margin-top: auto;
  border-top: 1px solid #E4E6EF;
  padding-top: 1rem;
}
.w-sidebar__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 10px 14px;
  color: #8E94A5;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
  position: relative;
}
.w-sidebar__link:hover {
  color: #1A1A2E;
  background-color: rgba(142, 148, 165, 0.08);
  text-decoration: none;
}
.w-sidebar__link--active {
  color: #1A1A2E;
  background-color: rgba(26, 26, 46, 0.03);
}
.w-sidebar__link--active::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 4px;
  background-color: #00B16E;
  border-radius: 0 4px 4px 0;
}
.w-sidebar__link--active .w-sidebar__icon {
  color: #00B16E;
}
.w-sidebar__link--logout:hover {
  color: #F1416C;
  background-color: rgba(241, 65, 108, 0.08);
}
.w-sidebar__icon {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}
.w-sidebar__footer {
  padding: 1.5rem;
  background-color: #FFFFFF;
  flex-shrink: 0;
}
.w-sidebar .w-user-panel {
  background-color: #F6F7F9;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.w-sidebar .w-user-panel__avatar {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 107, 0, 0.15);
  color: #FF6B00;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.w-sidebar .w-user-panel__info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1;
}
.w-sidebar .w-user-panel__name {
  font-weight: 800;
  color: #1A1A2E;
  font-size: 0.85rem;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.w-sidebar .w-user-panel__role {
  font-size: 0.55rem;
  font-weight: 700;
  color: #8E94A5;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}
.badge--rgpd {
  background-color: #FFC700;
  color: #000000;
}
.badge--success {
  background-color: #2E7D32;
}
.badge--danger {
  background-color: #F1416C;
}
.badge--info {
  background-color: #009EF7;
}
.badge--primary {
  background-color: #2E7D32;
}
.badge--alert {
  background-color: #F1416C;
  animation: pulseAlert 2s infinite;
}

@keyframes pulseAlert {
  0% {
    box-shadow: 0 0 0 0 rgba(241, 65, 108, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(241, 65, 108, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(241, 65, 108, 0);
  }
}
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #424242;
  border-collapse: collapse;
}
.table th,
.table td {
  padding: 0.5rem 1rem;
  vertical-align: middle;
  border-bottom: 1px solid #E4E6EF;
}
.table th {
  font-weight: 600;
  text-align: left;
  background-color: rgba(245, 248, 250, 0.5);
  color: #7E8299;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}
.table tbody tr {
  transition: background-color 0.3s ease-in-out;
}
.table tbody tr:hover {
  background-color: rgba(46, 125, 50, 0.05);
}
.table--striped tbody tr:nth-of-type(odd) {
  background-color: rgba(245, 248, 250, 0.2);
}

@media (max-width: 767px) {
  .main-content table,
  .card table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
}
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
  color: #7E8299;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.dataTables_wrapper .dataTables_filter input {
  border: 1px solid #E4E6EF;
  border-radius: 0.25rem;
  padding: 0.25rem 0.5rem;
  margin-left: 0.5rem;
  outline: none;
}
.dataTables_wrapper .dataTables_filter input:focus {
  border-color: #2E7D32;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  padding: 0.25rem 0.5rem !important;
  margin-left: 2px;
  border-radius: 0.25rem;
  border: 1px solid transparent;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: #2E7D32;
  color: #FFFFFF !important;
  border: 1px solid #2E7D32;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover:not(.current):not(.disabled) {
  background: rgba(46, 125, 50, 0.1);
  color: #2E7D32 !important;
  border: 1px solid transparent;
}

.flash-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 350px;
}

.flash-message {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
  animation: fadeInRight 0.3s ease-out forwards;
}
.flash-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
}
.flash-message--success::before {
  background-color: #2E7D32;
}
.flash-message--success .flash-icon {
  color: #2E7D32;
}
.flash-message--error::before {
  background-color: #F1416C;
}
.flash-message--error .flash-icon {
  color: #F1416C;
}
.flash-message--warning::before {
  background-color: #FFC700;
}
.flash-message--warning .flash-icon {
  color: #FFC700;
}
.flash-message__content {
  flex: 1;
  margin: 0 1rem;
  font-size: 0.875rem;
  color: #1A1A2E;
}
.flash-message__close {
  background: transparent;
  border: none;
  color: #7E8299;
  cursor: pointer;
  font-size: 1.25rem;
  padding: 0;
  line-height: 1;
  transition: color 0.3s ease-in-out;
}
.flash-message__close:hover {
  color: #1A1A2E;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.login-input-group {
  position: relative;
  margin-bottom: 1rem;
}
.login-input-group__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #7E8299;
  pointer-events: none;
  transition: color 0.2s ease;
}
.login-input-group .form-control {
  padding-left: 2.75rem;
}
.login-input-group .form-control:focus + .login-input-group__icon, .login-input-group .form-control:focus ~ .login-input-group__icon {
  color: #2E7D32;
}
.login-input-group:focus-within .login-input-group__icon {
  color: #2E7D32;
}

.login-welcome {
  margin-bottom: 2rem;
  animation: fadeInUp 0.4s ease-out 0.1s both;
}
.login-welcome h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 0.25rem;
}
.login-welcome p {
  color: #7E8299;
  font-size: 0.875rem;
  margin: 0;
}

.login-form {
  animation: fadeInUp 0.4s ease-out 0.2s both;
}
.login-form .form-control {
  height: 48px;
  font-size: 1rem;
  border-radius: 0.5rem;
}
.login-form .btn-auth {
  height: 48px;
  margin-top: 1.5rem;
}

.login-back {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: #7E8299;
  animation: fadeIn 0.4s ease-out 0.3s both;
}
.login-back a {
  color: #2E7D32;
  font-weight: 600;
}

.auth-ball-decoration {
  width: 120px;
  height: 120px;
  opacity: 0.12;
  position: absolute;
  bottom: 2rem;
  right: 2rem;
}

.dashboard-page .content-header {
  display: none !important;
}
.dashboard-page__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 1rem 0 0;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 767px) {
  .dashboard-page__topbar {
    flex-direction: column;
    align-items: flex-start;
  }
}
.dashboard-page__search {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border-radius: 0.5rem;
  padding: 0.6rem 1rem;
  width: 340px;
  max-width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .dashboard-page__search {
    width: 100%;
  }
}
.dashboard-page__search input {
  border: none;
  outline: none;
  width: 100%;
  color: #7E8299;
  font-size: 0.875rem;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: transparent;
}
.dashboard-page__search input::placeholder {
  color: #7E8299;
}
.dashboard-page__search i {
  color: #7E8299;
  font-size: 0.9rem;
}
.dashboard-page__topbar-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #7E8299;
  font-size: 1.1rem;
}
.dashboard-page__topbar-icons .icon-wrapper {
  position: relative;
  cursor: pointer;
  transition: color 0.2s ease;
}
.dashboard-page__topbar-icons .icon-wrapper:hover {
  color: #424242;
}
.dashboard-page__topbar-icons .dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background: #F1416C;
  border-radius: 50%;
  border: 2px solid #F5F8FA;
}
.dashboard-page__title {
  font-family: "Outfit", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #1A1A2E;
  margin-bottom: 0.25rem;
  letter-spacing: -1px;
}
@media (max-width: 767px) {
  .dashboard-page__title {
    font-size: 1.75rem;
    letter-spacing: -0.5px;
  }
}
.dashboard-page__subtitle {
  font-size: 0.85rem;
  color: #7E8299;
  margin-bottom: 2rem;
  font-weight: 500;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .kpi-grid {
    grid-template-columns: 1fr;
  }
}

.kpi-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.kpi-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.kpi-card__icon--green {
  background: rgba(0, 177, 110, 0.12);
  color: #00B16E;
}
.kpi-card__icon--orange {
  background: rgba(255, 107, 0, 0.12);
  color: #FF6B00;
}
.kpi-card__icon--blue {
  background: rgba(0, 158, 247, 0.12);
  color: #009EF7;
}
.kpi-card__icon--yellow {
  background: rgba(242, 166, 0, 0.12);
  color: #F2A600;
}
.kpi-card__icon--red {
  background: rgba(241, 65, 108, 0.12);
  color: #F1416C;
}
.kpi-card__body {
  min-width: 0;
}
.kpi-card__label {
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #8E94A5;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.kpi-card__value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #1A1A2E;
  line-height: 1;
  letter-spacing: -0.5px;
}
.kpi-card__badge {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0;
}
.kpi-card__badge--positive {
  color: #00B16E;
}
.kpi-card__badge--negative {
  color: #F1416C;
}
.kpi-card__badge--neutral {
  color: #8E94A5;
}

.dashboard-mid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 991px) {
  .dashboard-mid {
    grid-template-columns: 1fr;
  }
}

.panel {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}
.panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.panel__title {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1A1A2E;
  margin: 0;
  letter-spacing: -0.3px;
}
.panel__action {
  font-size: 0.875rem;
  font-weight: 600;
  color: #7E8299;
  background: #F5F8FA;
  border: 1px solid #E4E6EF;
  border-radius: 0.25rem;
  padding: 4px 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.panel__action:hover {
  background: #E4E6EF;
  color: #1A1A2E;
  text-decoration: none;
}
@media (max-width: 767px) {
  .panel__action-arrow {
    display: none;
  }
}
.panel__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: #FF6B00;
  color: #FFFFFF;
  border: none;
  outline: none;
  border-radius: 0.25rem;
  padding: 6px 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.panel__btn-primary:hover {
  background: #d65a00;
  color: #FFFFFF;
  text-decoration: none;
}
.panel__btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: #FFFFFF;
  color: #424242;
  border: 1px solid #E4E6EF;
  outline: none;
  border-radius: 0.25rem;
  padding: 6px 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.panel__btn-outline:hover {
  background: #F5F8FA;
  text-decoration: none;
}
.panel__btn-outline-full {
  width: 100%;
  text-align: center;
  padding: 0.5rem 1rem;
  border: 1px solid #E4E6EF;
  border-radius: 0.5rem;
  color: #1A1A2E;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  margin-top: auto;
  display: block;
  transition: all 0.2s ease;
}
.panel__btn-outline-full:hover {
  background: #F5F8FA;
  text-decoration: none;
}

.chart-wrapper {
  position: relative;
  flex: 1;
  min-height: 200px;
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  margin-bottom: 1rem;
}

.event-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.event-item__date {
  width: 46px;
  height: 52px;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.event-item__month {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #FF6B00;
  letter-spacing: 0.5px;
}
.event-item__day {
  font-size: 1.1rem;
  font-weight: 700;
  color: #cc5600;
  line-height: 1.1;
}
.event-item__title {
  font-weight: 700;
  color: #1A1A2E;
  font-size: 0.875rem;
  margin-bottom: 2px;
}
.event-item__desc {
  font-size: 0.75rem;
  color: #7E8299;
}

.players-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .players-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
}
.players-table th {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #7E8299;
  padding-bottom: 1rem;
  border-bottom: 1px solid #E4E6EF;
  text-align: left;
}
.players-table td {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(228, 230, 239, 0.5);
  vertical-align: middle;
  font-size: 0.875rem;
  color: #424242;
}
.players-table tbody tr:last-child td {
  border-bottom: none;
}
.players-table tbody tr {
  transition: background-color 0.15s ease;
}
.players-table tbody tr:hover td {
  background-color: rgba(245, 248, 250, 0.8);
}

.player-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.player-info__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(46, 125, 50, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2E7D32;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.player-info__name {
  font-weight: 700;
  color: #1A1A2E;
  font-size: 0.875rem;
}
.player-info__email {
  font-size: 0.72rem;
  color: #7E8299;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 700;
}
.status-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.status-badge--success {
  background: rgba(46, 125, 50, 0.1);
  color: #2E7D32;
}
.status-badge--success::before {
  background: #2E7D32;
}
.status-badge--warning {
  background: rgba(255, 199, 0, 0.15);
  color: #997700;
}
.status-badge--warning::before {
  background: #FFC700;
}
.status-badge--danger {
  background: rgba(241, 65, 108, 0.1);
  color: #F1416C;
}
.status-badge--danger::before {
  background: #F1416C;
}
.status-badge--neutral {
  background: #F3F4F6;
  color: #6B7280;
}
.status-badge--neutral::before {
  background: #9CA3AF;
}

.rgpd-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #997700;
  background: rgba(255, 199, 0, 0.1);
  border: 1px solid rgba(255, 199, 0, 0.25);
  border-radius: 0.25rem;
  padding: 3px 8px;
}
.rgpd-tag--none {
  background: transparent;
  border: none;
  color: #7E8299;
  font-style: italic;
}

.row-actions {
  color: #7E8299;
  cursor: pointer;
  font-size: 1rem;
  transition: color 0.15s ease;
}
.row-actions:hover {
  color: #1A1A2E;
}

.table-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #E4E6EF;
}

.table-count {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #7E8299;
}

.pagination-btns {
  display: flex;
  gap: 4px;
  align-items: center;
}

.page-btn {
  width: 30px;
  height: 30px;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #7E8299;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
}
.page-btn:hover {
  background: #F5F8FA;
  color: #1A1A2E;
  text-decoration: none;
}
.page-btn--active {
  background: #FF6B00;
  color: #FFFFFF;
}
.page-btn--active:hover {
  background: #d65a00;
  color: #FFFFFF;
}
.page-btn--nav {
  font-size: 0.7rem;
}
.page-btn--disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.team-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  flex-shrink: 0;
}
.team-icon--orange {
  background: rgba(255, 107, 0, 0.15);
  color: #FF6B00;
}
.team-icon--red {
  background: rgba(255, 74, 74, 0.15);
  color: #FF4A4A;
}

.league-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(142, 148, 165, 0.12);
  color: #8E94A5;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 99px;
  letter-spacing: 0.3px;
}

.action-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}
.action-btn--edit {
  background: transparent;
  color: #8E94A5;
}
.action-btn--edit:hover {
  background: rgba(142, 148, 165, 0.15);
  color: #1A1A2E;
  text-decoration: none;
}
.action-btn--delete {
  background: rgba(255, 74, 74, 0.12);
  color: #FF4A4A;
}
.action-btn--delete:hover {
  background: #FF4A4A;
  color: #FFFFFF;
}

.teams-search-form {
  flex: 1;
  max-width: 380px;
}

.teams-filter-panel {
  background: #FFFFFF;
  border: 1px solid #E4E6EF;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.teams-filter-row {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.teams-filter-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.teams-filter-field label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #8E94A5;
}

.teams-filter-select {
  background: #F8F9FB;
  border: 1px solid #E4E6EF;
  border-radius: 8px;
  padding: 10px 32px 10px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1A1A2E;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238E94A5' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 13px;
  cursor: pointer;
  transition: border-color 0.15s ease;
}
.teams-filter-select:focus {
  border-color: #7C3AED;
  outline: none;
}

.teams-filter-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.teams-filter-btn-apply {
  background: #1A1A2E;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease;
}
.teams-filter-btn-apply:hover {
  background: #2d2d4e;
}

.teams-filter-btn-reset {
  background: #FFFFFF;
  color: #8E94A5;
  border: 1px solid #E4E6EF;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
}
.teams-filter-btn-reset:hover {
  background: #F8F9FB;
  color: #1A1A2E;
  text-decoration: none;
}

.teams-filter-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FF6B00;
  margin-left: 4px;
  vertical-align: middle;
}

.panel__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #2E7D32;
  color: #FFFFFF !important;
  border: none;
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none !important;
  font-family: inherit;
  outline: none;
  transition: background 0.15s ease;
}
.panel__btn-primary:hover {
  background: #4CAF50 !important;
  color: #FFFFFF !important;
}

.panel__btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  color: #374151 !important;
  border: 1.5px solid #E4E6EF;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none !important;
  font-family: inherit;
  outline: none;
  transition: all 0.15s ease;
}
.panel__btn-outline:hover {
  border-color: #1A1A2E;
  color: #1A1A2E !important;
}

@media (max-width: 640px) {
  .panel__btn-primary,
  .panel__btn-outline {
    padding: 9px 11px;
  }
  .panel__btn-primary .btn-label,
  .panel__btn-outline .btn-label {
    display: none;
  }
}
.team-add-page__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.team-add-page__title-box {
  display: flex;
  flex-direction: column;
}
.team-add-page__title {
  font-family: "Outfit", sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #1A1A2E;
  letter-spacing: -2px;
  margin-bottom: 0.25rem;
  line-height: 1;
}
.team-add-page__subtitle {
  font-size: 0.95rem;
  color: #8E94A5;
  font-weight: 500;
}
.team-add-page__header-actions {
  display: flex;
  gap: 1rem;
}
.team-add-page__panel {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  margin-bottom: 2rem;
}
.team-add-page .color-picker {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.team-add-page .color-picker__circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.15s ease;
  border: 2px solid transparent;
}
.team-add-page .color-picker__circle--active {
  box-shadow: 0 0 0 2px #FFFFFF inset, 0 0 0 2px currentColor;
}
.team-add-page .color-picker__circle:hover {
  transform: scale(1.1);
}
.team-add-page .color-picker__custom {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #8E94A5;
  font-weight: 600;
  cursor: pointer;
}
.team-add-page .color-picker__custom i {
  font-size: 1rem;
  color: #D1D5DB;
}
.team-add-page .upload-dropzone {
  border: 2px dashed #E4E6EF;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  background-color: #FAFAFC;
  cursor: pointer;
  transition: all 0.2s ease;
}
.team-add-page .upload-dropzone:hover {
  border-color: #00B16E;
  background-color: rgba(0, 177, 110, 0.02);
}
.team-add-page .upload-dropzone__icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 177, 110, 0.1);
  color: #00B16E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}
.team-add-page .upload-dropzone__text {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1A1A2E;
  margin-bottom: 4px;
}
.team-add-page .upload-dropzone__subtext {
  font-size: 0.75rem;
  color: #8E94A5;
  font-weight: 500;
}
.team-add-page .visibility-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
}
.team-add-page .visibility-section__info h4 {
  font-size: 0.9rem;
  font-weight: 800;
  color: #1A1A2E;
  margin: 0 0 2px;
}
.team-add-page .visibility-section__info p {
  margin: 0;
  font-size: 0.75rem;
  color: #8E94A5;
  font-weight: 500;
}
.team-add-page .switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.team-add-page .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.team-add-page .switch input:checked + .slider {
  background-color: #00B16E;
}
.team-add-page .switch input:focus + .slider {
  box-shadow: 0 0 1px #00B16E;
}
.team-add-page .switch input:checked + .slider:before {
  transform: translateX(20px);
}
.team-add-page .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s 0.3s ease-in-out;
  border-radius: 34px;
}
.team-add-page .switch .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s 0.3s ease-in-out;
  border-radius: 50%;
}
.team-add-page__footer-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  padding-top: 3rem;
  margin-top: 2rem;
  border-top: 1px solid #E4E6EF;
}
.team-add-page__reset-link {
  color: #8E94A5;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.team-add-page__reset-link:hover {
  color: #1A1A2E;
  text-decoration: none;
}
.team-add-page .btn-green {
  background-color: #00B16E;
  color: #FFFFFF;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}
.team-add-page .btn-green:hover {
  background-color: #008855;
  color: #FFFFFF;
}
.team-add-page .btn-white {
  background-color: #FFFFFF;
  color: #1A1A2E;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid #E4E6EF;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}
.team-add-page .btn-white:hover {
  background-color: #F8F9FB;
  text-decoration: none;
}
.team-add-page__infos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 991px) {
  .team-add-page__infos-grid {
    grid-template-columns: 1fr;
  }
}
.team-add-page .info-box {
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.team-add-page .info-box__icon {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.team-add-page .info-box__title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #1A1A2E;
  margin: 0 0 6px;
}
.team-add-page .info-box__desc {
  font-size: 0.75rem;
  color: #8E94A5;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}
.team-add-page .info-box--green {
  background-color: rgba(0, 177, 110, 0.08);
}
.team-add-page .info-box--green .info-box__icon {
  color: #00B16E;
}
.team-add-page .info-box--blue {
  background-color: rgba(59, 130, 246, 0.08);
}
.team-add-page .info-box--blue .info-box__icon {
  color: #3B82F6;
}
.team-add-page .info-box--orange {
  background-color: rgba(255, 138, 0, 0.08);
}
.team-add-page .info-box--orange .info-box__icon {
  color: #FF8A00;
}

.team-edit-page__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-top: 0.25rem;
}
.team-edit-page__topbar .breadcrumbs {
  font-size: 0.85rem;
  color: #8E94A5;
  font-weight: 500;
}
.team-edit-page__topbar .breadcrumbs a {
  color: #8E94A5;
  text-decoration: none;
}
.team-edit-page__topbar .breadcrumbs a:hover {
  color: #1A1A2E;
  text-decoration: underline;
}
.team-edit-page__topbar .breadcrumbs .separator {
  margin: 0 6px;
}
.team-edit-page__topbar .breadcrumbs .current {
  color: #1A1A2E;
  font-weight: 700;
}
.team-edit-page__topbar .profile-area {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.team-edit-page__topbar .profile-area .bell-icon {
  color: #8E94A5;
  font-size: 1.1rem;
  position: relative;
  cursor: pointer;
}
.team-edit-page__topbar .profile-area .bell-icon:hover {
  color: #1A1A2E;
}
.team-edit-page__topbar .profile-area .user-profile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1A1A2E;
}
.team-edit-page__topbar .profile-area .user-profile__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1A1A2E;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 0.8rem;
}
.team-edit-page__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.team-edit-page__title-box {
  display: flex;
  flex-direction: column;
}
.team-edit-page__title {
  font-family: "Outfit", sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #1A1A2E;
  letter-spacing: -2px;
  margin-bottom: 0.25rem;
  line-height: 1;
}
.team-edit-page__subtitle {
  font-size: 0.95rem;
  color: #8E94A5;
  font-weight: 500;
}
.team-edit-page__header-actions {
  display: flex;
  gap: 1rem;
}
.team-edit-page__header-actions .btn-delete {
  background-color: transparent;
  color: #FF4A4A;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid rgba(255, 74, 74, 0.4);
  background: rgba(255, 74, 74, 0.05);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.team-edit-page__header-actions .btn-delete:hover {
  background-color: #FF4A4A;
  color: #FFFFFF;
}
.team-edit-page__header-actions .btn-save {
  background-color: #00B16E;
  color: #FFFFFF;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.team-edit-page__header-actions .btn-save:hover {
  background-color: #008855;
  color: #FFFFFF;
}
.team-edit-page .edit-panel {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  margin-bottom: 1.5rem;
}
.team-edit-page .edit-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.team-edit-page .edit-panel__header .title-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.team-edit-page .edit-panel__header .title-wrap i {
  color: #00B16E;
  font-size: 1.1rem;
  background: rgba(0, 177, 110, 0.15);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-edit-page .edit-panel__header .title-wrap h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1A1A2E;
  margin: 0;
  letter-spacing: -0.3px;
}
.team-edit-page .edit-panel__header .action-link {
  color: #00B16E;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}
.team-edit-page .edit-panel__header .action-link:hover {
  text-decoration: underline;
}
.team-edit-page .squad-table {
  width: 100%;
  border-collapse: collapse;
}
.team-edit-page .squad-table th {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #8E94A5;
  padding-bottom: 1rem;
  border-bottom: 1px solid #E4E6EF;
  text-align: left;
}
.team-edit-page .squad-table td {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(228, 230, 239, 0.5);
  vertical-align: middle;
  color: #1A1A2E;
  font-size: 0.85rem;
  font-weight: 500;
}
.team-edit-page .squad-table tbody tr:last-child td {
  border-bottom: none;
  padding-bottom: 0;
}
.team-edit-page .squad-table .player-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.team-edit-page .squad-table .player-info__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 177, 110, 0.1);
  color: #00B16E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.team-edit-page .squad-table .player-info__name {
  font-weight: 700;
  color: #1A1A2E;
}
.team-edit-page .squad-table .action-minus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #E4E6EF;
  color: #8E94A5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}
.team-edit-page .squad-table .action-minus:hover {
  background: #FF4A4A;
  color: #FFFFFF;
}
.team-edit-page .squad-table .role-badge {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #1A1A2E;
}
.team-edit-page .team-photo-box img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 140px;
  margin-bottom: 1rem;
}
.team-edit-page .team-photo-box .upload-btn {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  border: 2px dashed #E4E6EF;
  border-radius: 10px;
  color: #8E94A5;
  font-size: 0.85rem;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.team-edit-page .team-photo-box .upload-btn:hover {
  border-color: #00B16E;
  color: #00B16E;
  background: rgba(0, 177, 110, 0.02);
}
.team-edit-page .quick-stats-list {
  display: flex;
  flex-direction: column;
}
.team-edit-page .quick-stats-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(228, 230, 239, 0.5);
}
.team-edit-page .quick-stats-list__item:first-child {
  padding-top: 0;
}
.team-edit-page .quick-stats-list__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.team-edit-page .quick-stats-list__item .label {
  color: #8E94A5;
  font-size: 0.85rem;
  font-weight: 600;
}
.team-edit-page .quick-stats-list__item .val {
  color: #1A1A2E;
  font-size: 1.05rem;
  font-weight: 800;
}
.team-edit-page .quick-stats-list__item .val--green {
  color: #00B16E;
}
.team-edit-page .pro-tip {
  background: rgba(0, 177, 110, 0.05);
  border: 1px solid rgba(0, 177, 110, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
}
.team-edit-page .pro-tip i {
  color: #00B16E;
  font-size: 1.25rem;
}
.team-edit-page .pro-tip h4 {
  font-size: 0.85rem;
  font-weight: 800;
  color: #1A1A2E;
  margin: 0 0 4px;
}
.team-edit-page .pro-tip p {
  margin: 0;
  font-size: 0.75rem;
  color: #8E94A5;
  line-height: 1.5;
  font-weight: 500;
}

.sessions-page__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-top: 0.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 767px) {
  .sessions-page__topbar {
    flex-direction: column;
    align-items: flex-start;
  }
}
.sessions-page__search {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border-radius: 0.5rem;
  padding: 0.6rem 1rem;
  width: 340px;
  max-width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .sessions-page__search {
    width: 100%;
  }
}
.sessions-page__search input {
  border: none;
  outline: none;
  width: 100%;
  color: #7E8299;
  font-size: 0.875rem;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: transparent;
}
.sessions-page__search input::placeholder {
  color: #7E8299;
}
.sessions-page__search i {
  color: #7E8299;
  font-size: 0.9rem;
}
.sessions-page__topbar-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #7E8299;
  font-size: 1.1rem;
}
.sessions-page__topbar-icons .icon-wrapper {
  position: relative;
  cursor: pointer;
  transition: color 0.2s ease;
}
.sessions-page__topbar-icons .icon-wrapper:hover {
  color: #424242;
}
.sessions-page__topbar-icons .dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background: #F1416C;
  border-radius: 50%;
  border: 2px solid #F5F8FA;
}
.sessions-page__title {
  font-family: "Outfit", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #1A1A2E;
  letter-spacing: -1.5px;
  margin-bottom: 0.25rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .sessions-page__title {
    font-size: 1.75rem;
    letter-spacing: -0.5px;
  }
}
.sessions-page__subtitle {
  font-size: 0.9rem;
  color: #8E94A5;
  font-weight: 500;
  margin-bottom: 2rem;
}
.sessions-page__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.sessions-page__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.sessions-page__panel {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  margin-bottom: 2rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .sessions-page__panel {
    overflow-x: auto;
  }
}
.sessions-page .session-table {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 767px) {
  .sessions-page .session-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
}
.sessions-page .session-table th {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #8E94A5;
  padding: 1rem 2rem;
  border-bottom: 1px solid #E4E6EF;
  text-align: left;
  background: transparent;
}
.sessions-page .session-table td {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(228, 230, 239, 0.5);
  vertical-align: middle;
  font-size: 0.875rem;
  color: #1A1A2E;
}
.sessions-page .session-table tbody tr {
  transition: background-color 0.15s ease;
}
.sessions-page .session-table tbody tr:hover td {
  background-color: #FAFBFC;
}
.sessions-page .session-table tbody tr:last-child td {
  border-bottom: none;
}
.sessions-page .session-table .session-date__day {
  font-weight: 800;
  color: #1A1A2E;
  font-size: 0.9rem;
  line-height: 1.2;
}
.sessions-page .session-table .session-date__time {
  font-size: 0.78rem;
  color: #8E94A5;
  font-weight: 500;
  margin-top: 2px;
}
.sessions-page .session-table .session-team {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sessions-page .session-table .session-team__avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}
.sessions-page .session-table .session-team__name {
  font-weight: 700;
  color: #1A1A2E;
}
.sessions-page .session-table .session-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #8E94A5;
  font-weight: 500;
  font-size: 0.85rem;
}
.sessions-page .session-table .session-location i {
  font-size: 0.8rem;
}
.sessions-page .session-table .session-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.sessions-page .session-table .session-badge--confirmed {
  background: rgba(0, 177, 110, 0.12);
  color: #00B16E;
}
.sessions-page .session-table .session-badge--pending {
  background: rgba(245, 158, 11, 0.15);
  color: #c57f08;
}
.sessions-page .session-table .session-badge--cancelled {
  background: rgba(241, 65, 108, 0.1);
  color: #F1416C;
}
.sessions-page .session-table .session-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sessions-page .session-table .session-actions a, .sessions-page .session-table .session-actions button {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.sessions-page .session-table .session-actions .btn-edit {
  background: transparent;
  color: #8E94A5;
}
.sessions-page .session-table .session-actions .btn-edit:hover {
  background: rgba(142, 148, 165, 0.12);
  color: #1A1A2E;
}
.sessions-page .session-table .session-actions .btn-del {
  background: rgba(241, 65, 108, 0.08);
  color: #F1416C;
}
.sessions-page .session-table .session-actions .btn-del:hover {
  background: #F1416C;
  color: #FFFFFF;
}
.sessions-page .session-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-top: 1px solid #E4E6EF;
}
.sessions-page .session-footer__info {
  font-size: 0.8rem;
  color: #8E94A5;
  font-weight: 500;
}
.sessions-page .edit-session-panel {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  padding: 2rem;
  margin-bottom: 2rem;
}
.sessions-page .edit-session-panel__title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.sessions-page .edit-session-panel__title .icon-wrap {
  width: 34px;
  height: 34px;
  background: rgba(255, 107, 0, 0.1);
  color: #FF6B00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.sessions-page .edit-session-panel__title h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1A1A2E;
  margin: 0;
  letter-spacing: -0.3px;
}
.sessions-page .edit-session-panel__actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #E4E6EF;
}
.sessions-page .session-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 991px) {
  .sessions-page .session-kpis {
    grid-template-columns: 1fr;
  }
}
.sessions-page .session-kpi {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.sessions-page .session-kpi__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.sessions-page .session-kpi__icon--green {
  background: rgba(0, 177, 110, 0.12);
  color: #00B16E;
}
.sessions-page .session-kpi__icon--orange {
  background: rgba(255, 107, 0, 0.12);
  color: #FF6B00;
}
.sessions-page .session-kpi__icon--yellow {
  background: rgba(245, 158, 11, 0.12);
  color: #F59E0B;
}
.sessions-page .session-kpi__body {
  display: flex;
  flex-direction: column;
}
.sessions-page .session-kpi__label {
  font-size: 0.72rem;
  color: #8E94A5;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.sessions-page .session-kpi__value {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #1A1A2E;
  line-height: 1.1;
  letter-spacing: -1px;
}
.sessions-page .session-kpi__unit {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #8E94A5;
}
.sessions-page .btn-filter {
  background: #FFFFFF;
  color: #1A1A2E;
  border: 1px solid #E4E6EF;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.sessions-page .btn-filter:hover {
  background: #F8F9FB;
}
.sessions-page .btn-add {
  background: #FF6B00;
  color: #FFFFFF;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.sessions-page .btn-add:hover {
  background: #d65a00;
  color: #FFFFFF;
  text-decoration: none;
}
.sessions-page .btn-cancel {
  background: #FFFFFF;
  color: #1A1A2E;
  border: 1px solid #E4E6EF;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.sessions-page .btn-cancel:hover {
  background: #F8F9FB;
}
.sessions-page .btn-update {
  background: #FF6B00;
  color: #FFFFFF;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.sessions-page .btn-update:hover {
  background: #d65a00;
}

.summoning-page__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding-top: 0.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .summoning-page__topbar {
    flex-direction: column;
    align-items: flex-start;
  }
}
.summoning-page__search {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border-radius: 0.5rem;
  padding: 0.6rem 1rem;
  flex: 1;
  max-width: 420px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  gap: 0.5rem;
}
.summoning-page__search input {
  border: none;
  outline: none;
  width: 100%;
  color: #7E8299;
  font-size: 0.875rem;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: transparent;
}
.summoning-page__search input::placeholder {
  color: #7E8299;
}
.summoning-page__search i {
  color: #7E8299;
  font-size: 0.9rem;
}
.summoning-page__topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.summoning-page__topbar-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #7E8299;
  font-size: 1.1rem;
}
.summoning-page__topbar-icons .icon-wrapper {
  position: relative;
  cursor: pointer;
  transition: color 0.2s ease;
}
.summoning-page__topbar-icons .icon-wrapper:hover {
  color: #424242;
}
.summoning-page__topbar-icons .dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background: #F1416C;
  border-radius: 50%;
  border: 2px solid #F5F8FA;
}
.summoning-page__title {
  font-family: "Outfit", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #1A1A2E;
  letter-spacing: -1.5px;
  margin-bottom: 0.25rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .summoning-page__title {
    font-size: 1.75rem;
    letter-spacing: -0.5px;
  }
}
.summoning-page__subtitle {
  font-size: 0.9rem;
  color: #8E94A5;
  font-weight: 500;
  margin-bottom: 2rem;
}
.summoning-page__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .summoning-page__stats {
    grid-template-columns: 1fr;
  }
}
.summoning-page .summon-stat {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.summoning-page .summon-stat__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.summoning-page .summon-stat__icon--orange {
  background: rgba(255, 107, 0, 0.12);
  color: #FF6B00;
}
.summoning-page .summon-stat__icon--green {
  background: rgba(0, 177, 110, 0.12);
  color: #00B16E;
}
.summoning-page .summon-stat__icon--yellow {
  background: rgba(245, 158, 11, 0.12);
  color: #c57f08;
}
.summoning-page .summon-stat__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.summoning-page .summon-stat__label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #8E94A5;
  margin-bottom: 4px;
}
.summoning-page .summon-stat__value-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.summoning-page .summon-stat__value {
  font-family: "Outfit", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #1A1A2E;
  line-height: 1;
  letter-spacing: -1px;
}
.summoning-page .summon-stat__sub {
  font-size: 0.78rem;
  font-weight: 600;
  color: #FF6B00;
}
.summoning-page .summon-stat__sub--green {
  color: #00B16E;
}
.summoning-page .summon-stat__action {
  font-size: 0.78rem;
  font-weight: 700;
  color: #FF6B00;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.summoning-page .summon-stat__action:hover {
  color: #cc5600;
}
.summoning-page__panel {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}
@media (max-width: 767px) {
  .summoning-page__panel {
    overflow-x: auto;
  }
}
.summoning-page .summon-tabs-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  border-bottom: 1px solid #E4E6EF;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .summoning-page .summon-tabs-bar {
    padding: 0 1rem;
  }
}
.summoning-page .summon-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.summoning-page .summon-tabs::-webkit-scrollbar {
  display: none;
}
.summoning-page .summon-tabs .tab {
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #8E94A5;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.summoning-page .summon-tabs .tab:hover {
  color: #1A1A2E;
}
.summoning-page .summon-tabs .tab--active {
  color: #FF6B00;
  border-bottom-color: #FF6B00;
}
.summoning-page .summon-toolbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}
.summoning-page .summon-table {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 767px) {
  .summoning-page .summon-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
}
.summoning-page .summon-table th {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #8E94A5;
  padding: 1rem 2rem;
  border-bottom: 1px solid #E4E6EF;
  text-align: left;
}
.summoning-page .summon-table td {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(228, 230, 239, 0.5);
  vertical-align: middle;
  font-size: 0.875rem;
  color: #1A1A2E;
}
.summoning-page .summon-table tbody tr {
  transition: background-color 0.15s ease;
}
.summoning-page .summon-table tbody tr:hover td {
  background-color: #FAFBFC;
}
.summoning-page .summon-table tbody tr:last-child td {
  border-bottom: none;
}
.summoning-page .summon-table .player-cell {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.summoning-page .summon-table .player-cell__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 107, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF6B00;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
  overflow: hidden;
}
.summoning-page .summon-table .player-cell__name {
  font-weight: 800;
  color: #1A1A2E;
  font-size: 0.9rem;
  line-height: 1.2;
}
.summoning-page .summon-table .player-cell__role {
  font-size: 0.75rem;
  color: #8E94A5;
  font-weight: 500;
}
.summoning-page .summon-table .match-cell {
  font-weight: 700;
  color: #1A1A2E;
  font-size: 0.875rem;
}
.summoning-page .summon-table .date-cell {
  font-weight: 600;
  color: #1A1A2E;
  font-size: 0.875rem;
}
.summoning-page .summon-table .date-cell .time {
  color: #8E94A5;
  font-size: 0.78rem;
}
.summoning-page .summon-table .summon-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.summoning-page .summon-table .summon-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.summoning-page .summon-table .summon-badge--confirmed {
  background: rgba(0, 177, 110, 0.12);
  color: #00B16E;
}
.summoning-page .summon-table .summon-badge--confirmed::before {
  background: #00B16E;
}
.summoning-page .summon-table .summon-badge--pending {
  background: rgba(245, 158, 11, 0.15);
  color: #c57f08;
}
.summoning-page .summon-table .summon-badge--pending::before {
  background: #F59E0B;
}
.summoning-page .summon-table .summon-badge--declined {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
}
.summoning-page .summon-table .summon-badge--declined::before {
  background: #EF4444;
}
.summoning-page .summon-table .summon-badge--convoque {
  background: rgba(0, 177, 110, 0.12);
  color: #00B16E;
}
.summoning-page .summon-table .summon-badge--convoque::before {
  background: #00B16E;
}
.summoning-page .summon-table .summon-badge--absent {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
}
.summoning-page .summon-table .summon-badge--absent::before {
  background: #EF4444;
}
.summoning-page .summon-table .summon-badge--blesse {
  background: rgba(245, 158, 11, 0.15);
  color: #c57f08;
}
.summoning-page .summon-table .summon-badge--blesse::before {
  background: #F59E0B;
}
.summoning-page .summon-table .notified-cell {
  font-size: 0.78rem;
  color: #8E94A5;
  font-weight: 500;
  font-style: italic;
}
.summoning-page .summon-table .summon-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  padding-right: 8px;
}
.summoning-page .summon-table .summon-actions a, .summoning-page .summon-table .summon-actions button {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.summoning-page .summon-table .summon-actions .btn-mail {
  background: rgba(255, 107, 0, 0.1);
  color: #FF6B00;
}
.summoning-page .summon-table .summon-actions .btn-mail:hover {
  background: #FF6B00;
  color: #FFFFFF;
}
.summoning-page .summon-table .summon-actions .btn-edit {
  background: transparent;
  color: #8E94A5;
}
.summoning-page .summon-table .summon-actions .btn-edit:hover {
  background: rgba(142, 148, 165, 0.12);
  color: #1A1A2E;
}
.summoning-page .summon-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-top: 1px solid #E4E6EF;
}
.summoning-page .summon-footer__info {
  font-size: 0.8rem;
  color: #8E94A5;
  font-weight: 500;
}
.summoning-page .btn-create {
  background: #FF6B00;
  color: #FFFFFF;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.summoning-page .btn-create:hover {
  background: #d65a00;
  color: #FFFFFF;
  text-decoration: none;
}
.summoning-page .btn-filter {
  background: #FFFFFF;
  color: #1A1A2E;
  border: 1px solid #E4E6EF;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}
.summoning-page .btn-filter:hover {
  background: #F8F9FB;
}
.summoning-page .btn-export {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E4E6EF;
  color: #8E94A5;
  background: #FFFFFF;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.summoning-page .btn-export:hover {
  background: #F8F9FB;
}

.articles-page__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding-top: 0.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .articles-page__topbar {
    flex-direction: column;
    align-items: flex-start;
  }
}
.articles-page__search {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border-radius: 0.5rem;
  padding: 0.6rem 1rem;
  max-width: 380px;
  flex: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  gap: 0.5rem;
}
.articles-page__search input {
  border: none;
  outline: none;
  width: 100%;
  color: #7E8299;
  font-size: 0.875rem;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: transparent;
}
.articles-page__search input::placeholder {
  color: #7E8299;
}
.articles-page__search i {
  color: #7E8299;
  font-size: 0.9rem;
}
.articles-page__topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.articles-page__topbar-right .icon-wrapper {
  position: relative;
  cursor: pointer;
  color: #7E8299;
  font-size: 1.1rem;
  transition: color 0.2s ease;
}
.articles-page__topbar-right .icon-wrapper:hover {
  color: #424242;
}
.articles-page__topbar-right .icon-wrapper .dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background: #F1416C;
  border-radius: 50%;
  border: 2px solid #F5F8FA;
}
.articles-page__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.articles-page__title {
  font-family: "Outfit", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #1A1A2E;
  letter-spacing: -1.5px;
  margin-bottom: 0.25rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .articles-page__title {
    font-size: 1.75rem;
    letter-spacing: -0.5px;
  }
}
.articles-page__subtitle {
  font-size: 0.9rem;
  color: #8E94A5;
  font-weight: 500;
  margin: 0;
}
.articles-page__actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.articles-page__panel {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}
@media (max-width: 767px) {
  .articles-page__panel {
    overflow-x: auto;
  }
}
.articles-page .article-tabs {
  display: flex;
  padding: 0 2rem;
  border-bottom: 1px solid #E4E6EF;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.articles-page .article-tabs::-webkit-scrollbar {
  display: none;
}
@media (max-width: 767px) {
  .articles-page .article-tabs {
    padding: 0 1rem;
  }
}
.articles-page .article-tabs .tab {
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #8E94A5;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  transition: all 0.15s ease;
}
.articles-page .article-tabs .tab:hover {
  color: #1A1A2E;
  text-decoration: none;
}
.articles-page .article-tabs .tab--active {
  color: #FF6B00;
  border-bottom-color: #FF6B00;
}
.articles-page .article-table {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 767px) {
  .articles-page .article-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
}
.articles-page .article-table th {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #8E94A5;
  padding: 1rem 2rem;
  border-bottom: 1px solid #E4E6EF;
  text-align: left;
}
.articles-page .article-table td {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(228, 230, 239, 0.5);
  vertical-align: middle;
}
.articles-page .article-table tbody tr {
  transition: background-color 0.15s ease;
}
.articles-page .article-table tbody tr:hover td {
  background-color: #FAFBFC;
}
.articles-page .article-table tbody tr:last-child td {
  border-bottom: none;
}
.articles-page .article-table .article-thumb {
  width: 52px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  background: #E4E6EF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8E94A5;
  font-size: 1.1rem;
  flex-shrink: 0;
  overflow: hidden;
}
.articles-page .article-table .article-title-cell__name {
  font-weight: 800;
  color: #1A1A2E;
  font-size: 0.9rem;
  margin-bottom: 3px;
  line-height: 1.2;
}
.articles-page .article-table .article-title-cell__excerpt {
  font-size: 0.75rem;
  color: #8E94A5;
  font-weight: 500;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 280px;
}
.articles-page .article-table .author-cell {
  display: flex;
  align-items: center;
  gap: 8px;
}
.articles-page .article-table .author-cell__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
  color: #FFFFFF;
}
.articles-page .article-table .author-cell__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1A1A2E;
}
.articles-page .article-table .article-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 800;
}
.articles-page .article-table .article-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.articles-page .article-table .article-badge--published {
  background: rgba(0, 177, 110, 0.12);
  color: #00B16E;
}
.articles-page .article-table .article-badge--published::before {
  background: #00B16E;
}
.articles-page .article-table .article-badge--draft {
  background: rgba(245, 158, 11, 0.15);
  color: #c57f08;
}
.articles-page .article-table .article-badge--draft::before {
  background: #F59E0B;
}
.articles-page .article-table .article-badge--archived {
  background: rgba(142, 148, 165, 0.12);
  color: #8E94A5;
}
.articles-page .article-table .article-badge--archived::before {
  background: #8E94A5;
}
.articles-page .article-table .date-cell {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1A1A2E;
}
.articles-page .article-table .article-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding-right: 8px;
}
.articles-page .article-table .article-actions a, .articles-page .article-table .article-actions button {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.articles-page .article-table .article-actions .btn-edit {
  background: transparent;
  color: #8E94A5;
}
.articles-page .article-table .article-actions .btn-edit:hover {
  background: rgba(142, 148, 165, 0.12);
  color: #1A1A2E;
}
.articles-page .article-table .article-actions .btn-del {
  background: rgba(241, 65, 108, 0.08);
  color: #F1416C;
}
.articles-page .article-table .article-actions .btn-del:hover {
  background: #F1416C;
  color: #FFFFFF;
}
.articles-page .article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-top: 1px solid #E4E6EF;
}
.articles-page .article-footer__info {
  font-size: 0.8rem;
  color: #8E94A5;
  font-weight: 500;
}
.articles-page .article-footer__info strong {
  color: #1A1A2E;
}
.articles-page .btn-new-article {
  background: #FF6B00;
  color: #FFFFFF;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.articles-page .btn-new-article:hover {
  background: #d65a00;
  color: #FFFFFF;
  text-decoration: none;
}
.articles-page .btn-filter-article {
  background: #FFFFFF;
  color: #1A1A2E;
  border: 1px solid #E4E6EF;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.articles-page .btn-filter-article:hover {
  background: #F8F9FB;
  text-decoration: none;
}
.articles-page .btn-filter-article--active {
  background: rgba(255, 107, 0, 0.08);
  border-color: #FF6B00;
  color: #FF6B00;
}
.articles-page__search-form {
  flex: 1;
  max-width: 380px;
}
.articles-page__search-input {
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  color: #7E8299;
}
.articles-page__search-input::placeholder {
  color: #7E8299;
}

.article-filter-panel {
  background: #FFFFFF;
  border: 1px solid #E4E6EF;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.article-filter-row {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.article-filter-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.article-filter-field label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #8E94A5;
}

.article-filter-select,
.article-filter-input {
  background: #F8F9FB;
  border: 1px solid #E4E6EF;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1A1A2E;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  outline: none;
  transition: border-color 0.15s ease;
}
.article-filter-select:focus,
.article-filter-input:focus {
  border-color: #FF6B00;
}

.article-filter-select {
  appearance: none;
  padding-right: 32px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238E94A5' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 13px;
  cursor: pointer;
}

.article-filter-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.article-filter-btn-apply {
  background: #FF6B00;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease;
}
.article-filter-btn-apply:hover {
  background: #d65a00;
}

.article-filter-btn-reset {
  background: #FFFFFF;
  color: #8E94A5;
  border: 1px solid #E4E6EF;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
}
.article-filter-btn-reset:hover {
  background: #F8F9FB;
  color: #1A1A2E;
  text-decoration: none;
}

.article-form-page .article-cancel-btn {
  background: transparent;
  color: #F1416C;
  border: 1px solid rgba(241, 65, 108, 0.4);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.article-form-page .article-cancel-btn:hover {
  background: rgba(241, 65, 108, 0.06);
  text-decoration: none;
  color: #F1416C;
}
.article-form-page .article-save-btn {
  background: #00B16E;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.article-form-page .article-save-btn:hover {
  background: #008855;
}
.article-form-page .article-form-panel {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  margin-bottom: 2rem;
}
.article-form-page .article-form-field {
  margin-bottom: 2rem;
}
.article-form-page .article-form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  color: #1A1A2E;
  margin-bottom: 0.5rem;
  letter-spacing: -0.1px;
}
.article-form-page .article-form-field.mb-0 {
  margin-bottom: 0;
}
.article-form-page .article-input {
  width: 100%;
  background: #F8F9FB;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1A1A2E;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  transition: all 0.2s ease;
}
.article-form-page .article-input::placeholder {
  color: #A0A5B5;
}
.article-form-page .article-input:focus {
  outline: none;
  background: #FFFFFF;
  border-color: #FF6B00;
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.08);
}
.article-form-page .article-editor {
  border: 1px solid #E4E6EF;
  border-radius: 10px;
  overflow: hidden;
}
.article-form-page .article-editor__toolbar {
  background: #F8F9FB;
  border-bottom: 1px solid #E4E6EF;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.article-form-page .article-editor__toolbar button {
  background: transparent;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  cursor: pointer;
  color: #1A1A2E;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}
.article-form-page .article-editor__toolbar button:hover {
  background: rgba(0, 0, 0, 0.08);
}
.article-form-page .article-textarea {
  width: 100%;
  border: none;
  resize: none;
  padding: 16px;
  font-size: 0.9rem;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: #1A1A2E;
  font-weight: 400;
  line-height: 1.7;
  min-height: 280px;
  background: #FFFFFF;
}
.article-form-page .article-textarea::placeholder {
  color: #A0A5B5;
}
.article-form-page .article-textarea:focus {
  outline: none;
}
.article-form-page .article-side-panel {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  margin-bottom: 1rem;
}
.article-form-page .article-select {
  width: 100%;
  background: #F8F9FB;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 12px 36px 12px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1A1A2E;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238E94A5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  transition: all 0.2s ease;
}
.article-form-page .article-select:focus {
  outline: none;
  background-color: #FFFFFF;
  border-color: #FF6B00;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.08);
}
.article-form-page .article-status-toggle {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.article-form-page .article-status-toggle .status-btn {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: 1.5px solid #E4E6EF;
  background: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 700;
  color: #8E94A5;
  cursor: pointer;
  transition: all 0.2s ease;
}
.article-form-page .article-status-toggle .status-btn--active {
  background: rgba(255, 107, 0, 0.08);
  border-color: #FF6B00;
  color: #FF6B00;
}
.article-form-page .article-status-toggle .status-btn:hover:not(.status-btn--active) {
  background: #F8F9FB;
}
.article-form-page .article-image-drop {
  border: 2px dashed #E4E6EF;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.article-form-page .article-image-drop:hover {
  border-color: #FF6B00;
  background: rgba(255, 107, 0, 0.02);
}
.article-form-page .article-image-drop i {
  font-size: 2rem;
  color: #C4C9D6;
  display: block;
  margin-bottom: 8px;
}
.article-form-page .article-image-drop__text {
  font-size: 0.82rem;
  font-weight: 700;
  color: #8E94A5;
}
.article-form-page .article-image-drop__sub {
  font-size: 0.72rem;
  color: #C4C9D6;
  margin-top: 3px;
}
.article-form-page .article-tip-box {
  background: rgba(255, 107, 0, 0.06);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1rem;
}
.article-form-page .article-tip-box__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.article-form-page .article-tip-box__header i {
  color: #FF6B00;
  font-size: 1rem;
}
.article-form-page .article-tip-box__header strong {
  font-size: 0.875rem;
  font-weight: 800;
  color: #FF6B00;
}
.article-form-page .article-tip-box p {
  font-size: 0.8rem;
  color: #e66000;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

.article-edit-page .article-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #8E94A5;
  text-decoration: none;
  transition: color 0.2s ease;
}
.article-edit-page .article-back-btn:hover {
  color: #1A1A2E;
  text-decoration: none;
}
.article-edit-page .article-edit-title {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #1A1A2E;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 2rem;
  max-width: 700px;
}
.article-edit-page .article-edit-panel {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  margin-bottom: 2rem;
}
.article-edit-page .article-edit-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .article-edit-page .article-edit-row {
    flex-direction: column;
  }
}
.article-edit-page .article-edit-col {
  display: flex;
  flex-direction: column;
}
.article-edit-page .article-edit-field-label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #8E94A5;
  margin-bottom: 10px;
}
.article-edit-page .article-edit-input {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #E4E6EF;
  border-radius: 10px;
  padding: 13px 15px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1A1A2E;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  transition: all 0.2s ease;
}
.article-edit-page .article-edit-input::placeholder {
  color: #A0A5B5;
  font-weight: 400;
}
.article-edit-page .article-edit-input:focus {
  outline: none;
  border-color: #FF6B00;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.08);
}
.article-edit-page .article-edit-select {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #E4E6EF;
  border-radius: 10px;
  padding: 13px 36px 13px 15px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1A1A2E;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238E94A5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  transition: all 0.2s ease;
}
.article-edit-page .article-edit-select:focus {
  outline: none;
  border-color: #FF6B00;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.08);
}
.article-edit-page .article-edit-cover {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0;
}
.article-edit-page .article-edit-cover img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.article-edit-page .article-edit-cover__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.article-edit-page .article-edit-cover__overlay:hover {
  background: rgba(0, 0, 0, 0.45);
}
.article-edit-page .article-edit-cover__overlay:hover .article-edit-cover__change {
  opacity: 1;
}
.article-edit-page .article-edit-cover__change {
  background: #FFFFFF;
  color: #1A1A2E;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s ease;
}
.article-edit-page .article-edit-drop {
  border: 2px dashed #E4E6EF;
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  color: #8E94A5;
  cursor: pointer;
  transition: all 0.2s ease;
}
.article-edit-page .article-edit-drop i {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
  color: #C4C9D6;
}
.article-edit-page .article-edit-drop:hover {
  border-color: #FF6B00;
  background: rgba(255, 107, 0, 0.02);
}
.article-edit-page .article-edit-editor {
  border: 1px solid #E4E6EF;
  border-radius: 10px;
  overflow: hidden;
}
.article-edit-page .article-edit-editor__toolbar {
  background: #FFFFFF;
  border-bottom: 1px solid #E4E6EF;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.article-edit-page .article-edit-editor__toolbar button {
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  cursor: pointer;
  color: #1A1A2E;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  transition: background 0.15s ease;
}
.article-edit-page .article-edit-editor__toolbar button:hover {
  background: rgba(0, 0, 0, 0.06);
}
.article-edit-page .article-edit-textarea {
  width: 100%;
  border: none;
  resize: vertical;
  padding: 18px;
  font-size: 0.9rem;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: #1A1A2E;
  line-height: 1.75;
  min-height: 260px;
  background: #FFFFFF;
}
.article-edit-page .article-edit-textarea:focus {
  outline: none;
}
.article-edit-page .article-edit-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
}
.article-edit-page .article-edit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s ease;
}
.article-edit-page .article-edit-btn--save {
  background: #00B16E;
  color: #FFFFFF;
}
.article-edit-page .article-edit-btn--save:hover {
  background: #008855;
  color: #FFFFFF;
  text-decoration: none;
}
.article-edit-page .article-edit-btn--cancel {
  background: #FFFFFF;
  color: #1A1A2E;
  border: 1px solid #E4E6EF;
}
.article-edit-page .article-edit-btn--cancel:hover {
  background: #F8F9FB;
  color: #1A1A2E;
  text-decoration: none;
}
.article-edit-page .article-edit-btn--delete {
  background: transparent;
  color: #F1416C;
  border: 1px solid rgba(241, 65, 108, 0.3);
}
.article-edit-page .article-edit-btn--delete:hover {
  background: rgba(241, 65, 108, 0.06);
}

@media (max-width: 640px) {
  .article-form-header {
    flex-direction: column;
    gap: 1rem;
  }
  .article-form-header h1 {
    font-size: 1.75rem !important;
  }
  .article-form-header > div:last-child {
    width: 100%;
    justify-content: flex-start;
  }
  .article-edit-actions .btn-label {
    display: none;
  }
  .article-edit-actions .article-edit-btn--cancel {
    display: none;
  }
  .article-edit-actions .article-edit-btn {
    padding: 10px 14px;
  }
}
.subscription-page__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding-top: 0.5rem;
}
.subscription-page__title-block h1 {
  font-family: "Outfit", sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: #1A1A2E;
  letter-spacing: -1px;
  margin-bottom: 2px;
  line-height: 1;
}
.subscription-page__title-block p {
  font-size: 0.8rem;
  color: #8E94A5;
  font-weight: 500;
  margin: 0;
}
.subscription-page__topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.subscription-page__search {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border-radius: 0.5rem;
  padding: 0.55rem 1rem;
  width: 220px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  gap: 0.5rem;
  border: 1px solid #E4E6EF;
}
.subscription-page__search input {
  border: none;
  outline: none;
  width: 100%;
  color: #7E8299;
  font-size: 0.875rem;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: transparent;
}
.subscription-page__search input::placeholder {
  color: #7E8299;
}
.subscription-page__search i {
  color: #7E8299;
  font-size: 0.85rem;
}
.subscription-page .icon-wrapper {
  position: relative;
  cursor: pointer;
  color: #7E8299;
  font-size: 1.1rem;
  transition: color 0.2s ease;
}
.subscription-page .icon-wrapper:hover {
  color: #424242;
}
.subscription-page .icon-wrapper .dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background: #F1416C;
  border-radius: 50%;
  border: 2px solid #F5F8FA;
}
.subscription-page .btn-new-payment {
  background: #FF6B00;
  color: #FFFFFF;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.subscription-page .btn-new-payment:hover {
  background: #d65a00;
  color: #FFFFFF;
  text-decoration: none;
}
.subscription-page__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .subscription-page__stats {
    grid-template-columns: 1fr;
  }
}
.subscription-page .sub-stat {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}
.subscription-page .sub-stat__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #8E94A5;
}
.subscription-page .sub-stat__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.subscription-page .sub-stat__icon--red {
  background: rgba(239, 68, 68, 0.12);
  color: #EF4444;
}
.subscription-page .sub-stat__icon--green {
  background: rgba(0, 177, 110, 0.12);
  color: #00B16E;
}
.subscription-page .sub-stat__icon--orange {
  background: rgba(255, 107, 0, 0.12);
  color: #FF6B00;
}
.subscription-page .sub-stat__label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #8E94A5;
  margin-bottom: 6px;
}
.subscription-page .sub-stat__value-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.subscription-page .sub-stat__value {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #1A1A2E;
  letter-spacing: -1px;
  line-height: 1;
}
.subscription-page .sub-stat__delta {
  font-size: 0.78rem;
  font-weight: 700;
}
.subscription-page .sub-stat__delta--up {
  color: #00B16E;
}
.subscription-page .sub-stat__delta--down {
  color: #EF4444;
}
.subscription-page .sub-stat__sub {
  font-size: 0.75rem;
  color: #8E94A5;
  font-weight: 500;
  margin-top: 4px;
}
.subscription-page__panel {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}
.subscription-page .sub-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 1px solid #E4E6EF;
  flex-wrap: wrap;
  gap: 1rem;
}
.subscription-page .sub-filter-bar__left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.subscription-page .sub-filter-bar__left h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #1A1A2E;
  margin: 0;
}
.subscription-page .sub-filter-bar__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.subscription-page .sub-filter-bar .filter-pill {
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.15s ease;
}
.subscription-page .sub-filter-bar .filter-pill--active {
  background: #1A1A2E;
  color: #FFFFFF;
}
.subscription-page .sub-filter-bar .filter-pill--default {
  background: transparent;
  color: #8E94A5;
}
.subscription-page .sub-filter-bar .filter-pill--default:hover {
  background: #F8F9FB;
  color: #1A1A2E;
}
.subscription-page .sub-filter-bar .filter-select {
  background: #F8F9FB;
  border: 1px solid #E4E6EF;
  border-radius: 8px;
  padding: 6px 28px 6px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1A1A2E;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238E94A5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 12px;
  cursor: pointer;
}
.subscription-page .sub-filter-bar .btn-export {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid #E4E6EF;
  background: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1A1A2E;
  cursor: pointer;
  transition: all 0.15s ease;
}
.subscription-page .sub-filter-bar .btn-export:hover {
  background: #F8F9FB;
}
.subscription-page .sub-table {
  width: 100%;
  border-collapse: collapse;
}
.subscription-page .sub-table th {
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #8E94A5;
  padding: 1rem 2rem;
  border-bottom: 1px solid #E4E6EF;
  text-align: left;
}
.subscription-page .sub-table td {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(228, 230, 239, 0.5);
  vertical-align: middle;
  font-size: 0.875rem;
  color: #1A1A2E;
}
.subscription-page .sub-table tbody tr {
  transition: background-color 0.15s ease;
}
.subscription-page .sub-table tbody tr:hover td {
  background-color: #FAFBFC;
}
.subscription-page .sub-table tbody tr:last-child td {
  border-bottom: none;
}
.subscription-page .sub-table .player-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}
.subscription-page .sub-table .player-cell__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
  color: #FFFFFF;
}
.subscription-page .sub-table .player-cell__name {
  font-weight: 800;
  color: #1A1A2E;
  font-size: 0.875rem;
  line-height: 1.2;
}
.subscription-page .sub-table .player-cell__id {
  font-size: 0.7rem;
  color: #8E94A5;
  font-weight: 500;
}
.subscription-page .sub-table .amount-cell {
  font-weight: 800;
  font-size: 0.9rem;
  font-family: "Outfit", sans-serif;
  color: #1A1A2E;
}
.subscription-page .sub-table .sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 800;
}
.subscription-page .sub-table .sub-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}
.subscription-page .sub-table .sub-badge--paid, .subscription-page .sub-table .sub-badge--payee {
  background: rgba(0, 177, 110, 0.12);
  color: #00B16E;
}
.subscription-page .sub-table .sub-badge--paid::before, .subscription-page .sub-table .sub-badge--payee::before {
  background: #00B16E;
}
.subscription-page .sub-table .sub-badge--partial, .subscription-page .sub-table .sub-badge--en_attente {
  background: rgba(245, 158, 11, 0.15);
  color: #c57f08;
}
.subscription-page .sub-table .sub-badge--partial::before, .subscription-page .sub-table .sub-badge--en_attente::before {
  background: #F59E0B;
}
.subscription-page .sub-table .sub-badge--unpaid, .subscription-page .sub-table .sub-badge--impayee {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
}
.subscription-page .sub-table .sub-badge--unpaid::before, .subscription-page .sub-table .sub-badge--impayee::before {
  background: #EF4444;
}
.subscription-page .sub-table .date-cell {
  font-size: 0.82rem;
  color: #8E94A5;
  font-weight: 500;
}
.subscription-page .sub-table .sub-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  padding-right: 8px;
}
.subscription-page .sub-table .sub-actions a, .subscription-page .sub-table .sub-actions button {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.15s ease;
  text-decoration: none;
}
.subscription-page .sub-table .sub-actions .btn-edit {
  background: transparent;
  color: #8E94A5;
}
.subscription-page .sub-table .sub-actions .btn-edit:hover {
  background: rgba(142, 148, 165, 0.1);
  color: #1A1A2E;
}
.subscription-page .sub-table .sub-actions .btn-del {
  background: transparent;
  color: rgba(239, 68, 68, 0.7);
}
.subscription-page .sub-table .sub-actions .btn-del:hover {
  background: rgba(239, 68, 68, 0.08);
  color: #EF4444;
}
.subscription-page .sub-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-top: 1px solid #E4E6EF;
}
.subscription-page .sub-footer__info {
  font-size: 0.8rem;
  color: #8E94A5;
  font-weight: 500;
}

.subscription-form-page__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.subscription-form-page__title {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #1A1A2E;
  letter-spacing: -1px;
  margin-bottom: 4px;
}
.subscription-form-page__subtitle {
  font-size: 0.85rem;
  color: #8E94A5;
  font-weight: 500;
}
.subscription-form-page .sub-form-panel {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  margin-bottom: 2rem;
}
.subscription-form-page .sub-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid #E4E6EF;
  margin-top: 2rem;
}
.subscription-form-page .btn-save {
  background: #FF6B00;
  color: #FFFFFF;
  border-radius: 8px;
  padding: 11px 22px;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.subscription-form-page .btn-save:hover {
  background: #d65a00;
}
.subscription-form-page .btn-cancel {
  background: #FFFFFF;
  color: #1A1A2E;
  border: 1px solid #E4E6EF;
  border-radius: 8px;
  padding: 11px 20px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.subscription-form-page .btn-cancel:hover {
  background: #F8F9FB;
  color: #1A1A2E;
  text-decoration: none;
}
.subscription-form-page .btn-delete {
  background: transparent;
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  padding: 11px 20px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.subscription-form-page .btn-delete:hover {
  background: rgba(239, 68, 68, 0.05);
}

.results-strip {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E4E6EF;
  padding: 1rem 2rem;
  overflow-x: auto;
}
.results-strip__inner {
  display: flex;
  gap: 1.5rem;
  min-width: max-content;
}

.result-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1rem;
  background-color: #F5F8FA;
  border-radius: 0.5rem;
  border: 1px solid #E4E6EF;
  white-space: nowrap;
}
.result-card__team {
  font-size: 0.875rem;
  font-weight: 600;
  color: #424242;
}
.result-card__score {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1A1A2E;
  background-color: #FFFFFF;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  border: 1px solid #E4E6EF;
}
.result-card__outcome {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.15rem 0.4rem;
  border-radius: 0.25rem;
}
.result-card__outcome--win {
  background-color: rgba(46, 125, 50, 0.1);
  color: #2E7D32;
}
.result-card__outcome--draw {
  background-color: rgba(255, 199, 0, 0.15);
  color: #997700;
}
.result-card__outcome--loss {
  background-color: rgba(241, 65, 108, 0.1);
  color: #F1416C;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}
.sponsors-grid__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}
.sponsors-grid__item:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.sponsors-grid__item img {
  max-width: 140px;
  max-height: 60px;
  object-fit: contain;
}

.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.team-card {
  background-color: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.team-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}
.team-card__banner {
  height: 80px;
  background-color: #2E7D32;
  background-image: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card__banner span {
  font-size: 2rem;
}
.team-card__body {
  padding: 1.5rem;
}
.team-card__category {
  font-size: 0.875rem;
  color: #2E7D32;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}
.team-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 0.5rem;
}
.team-card__meta {
  font-size: 0.875rem;
  color: #7E8299;
}

.settings-page {
  padding: 2rem;
}
@media (max-width: 767px) {
  .settings-page {
    padding: 1rem;
  }
}
.settings-page__title {
  font-weight: 800;
  color: #181c32;
  font-size: 2rem;
  margin-bottom: 0.4rem;
}
.settings-page__subtitle {
  color: #a1a5b7;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.settings-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid #eff2f5;
  overflow: hidden;
  margin-bottom: 2rem;
}
.settings-card__header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #eff2f5;
}
.settings-card__title {
  font-weight: 700;
  color: #181c32;
  font-size: 1.15rem;
  margin: 0;
}
.settings-card__body {
  padding: 2rem;
}
.settings-card__footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid #eff2f5;
}

.settings-form__row {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .settings-form__row {
    flex-direction: column;
    align-items: center;
  }
}
.settings-form__avatar-col {
  flex: 0 0 140px;
}
.settings-form__fields-col {
  flex: 1;
  min-width: 0;
}
.settings-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.settings-form__grid--1col {
  grid-template-columns: 1fr;
}
.settings-form__grid--2col {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 600px) {
  .settings-form__grid {
    grid-template-columns: 1fr;
  }
}
.settings-form__field {
  display: flex;
  flex-direction: column;
}
.settings-form__field--full {
  grid-column: 1/-1;
}
.settings-form__field label {
  font-weight: 600;
  color: #7e8299;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
}

.avatar-upload {
  position: relative;
  width: 120px;
}
.avatar-upload__preview {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fde8d8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #c9824c;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.avatar-upload__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.avatar-upload__btn {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 32px;
  height: 32px;
  background: #10b981;
  border: 3px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.7rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
  transition: background 0.2s, transform 0.15s;
  padding: 0;
}
.avatar-upload__btn:hover {
  background: #059669;
  transform: scale(1.1);
}
.avatar-upload__vich-hidden {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.role-display {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  background: #f3f4f6;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 0 1rem;
  cursor: default;
}
.role-display__icon {
  color: #10b981;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.role-display input {
  flex: 1;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0.75rem 0 !important;
  font-size: 0.95rem !important;
  color: #9ca3af !important;
  cursor: default !important;
}

.custom-input {
  width: 100%;
  background: #f9fafb !important;
  border: 1.5px solid #e5e7eb !important;
  border-radius: 10px !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.95rem !important;
  color: #181c32 !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
  outline: none;
}
.custom-input:focus {
  background: #fff !important;
  border-color: #10b981 !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12) !important;
}
.custom-input:disabled {
  background: #f3f4f6 !important;
  color: #9ca3af !important;
  cursor: default;
}

.color-field {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.color-field__swatch {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px;
  padding: 4px !important;
  border: 1.5px solid #e5e7eb !important;
  border-radius: 10px !important;
  cursor: pointer;
  background: none;
  flex-shrink: 0;
}
.color-field__text {
  flex: 1;
  font-family: "Courier New", monospace;
  letter-spacing: 0.04em;
}

.logo-upload {
  position: relative;
}
.logo-upload__inner {
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  background: #fafafa;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.logo-upload__inner:hover, .logo-upload__inner--drag {
  background: #f0fdf4;
  border-color: #10b981;
}
.logo-upload__icon {
  font-size: 2rem;
  color: #9ca3af;
  margin-bottom: 0.75rem;
  display: block;
}
.logo-upload__text {
  font-weight: 600;
  color: #374151;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.logo-upload__hint {
  color: #9ca3af;
  font-size: 0.82rem;
  margin: 0;
}
.logo-upload__vich-hidden {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.logo-preview {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.btn-save {
  background: #10b981;
  color: #fff;
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}
.btn-save:hover {
  background: #059669;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
}
.btn-save:active {
  transform: translateY(0);
}

.role-page {
  padding: 2rem;
}
.role-page__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 600px) {
  .role-page__header {
    flex-direction: column;
  }
}
.role-page__title {
  font-weight: 800;
  font-size: 2rem;
  color: #181c32;
  margin-bottom: 0.4rem;
}
.role-page__subtitle {
  color: #7e8299;
  font-size: 0.92rem;
  max-width: 520px;
  line-height: 1.5;
  margin: 0;
}
.role-page__btn-add {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #10b981;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}
.role-page__btn-add:hover, .role-page__btn-add:focus {
  background: #059669;
  transform: translateY(-1px);
  color: #fff !important;
  text-decoration: none !important;
}
.role-page__btn-add:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
}

.role-new-page {
  padding: 2rem;
}
.role-new-page__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #9ca3af;
  margin-bottom: 1.25rem;
}
.role-new-page__breadcrumb a {
  color: #6b7280;
  text-decoration: none;
}
.role-new-page__breadcrumb a:hover {
  color: #111827;
}
.role-new-page__breadcrumb span {
  color: #10b981;
  font-weight: 600;
}
.role-new-page__breadcrumb i {
  font-size: 0.65rem;
}
.role-new-page__topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 600px) {
  .role-new-page__topbar {
    flex-direction: column;
  }
}
.role-new-page__title {
  font-weight: 800;
  font-size: 2rem;
  color: #111827;
  margin-bottom: 0.3rem;
}
.role-new-page__subtitle {
  color: #6b7280;
  font-size: 0.92rem;
  margin: 0;
}
.role-new-page__actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-shrink: 0;
}
.role-new-page__btn-cancel {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.4rem;
  border-radius: 10px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  color: #374151;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.role-new-page__btn-cancel:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  color: #111827;
}
.role-new-page__btn-save {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #10b981;
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}
.role-new-page__btn-save:hover {
  background: #059669;
  transform: translateY(-1px);
}
.role-new-page__footer-quote {
  text-align: center;
  color: #9ca3af;
  font-style: italic;
  font-size: 0.88rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.role-new-page__footer-quote i {
  color: #10b981;
  font-style: normal;
}

.role-form-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.role-form-card__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid #f3f4f6;
}
.role-form-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.role-form-card__icon--orange {
  background: #fff3e0;
  color: #e65100;
}
.role-form-card__icon--green {
  background: #d1fae5;
  color: #065f46;
}
.role-form-card__title {
  font-weight: 700;
  font-size: 1.05rem;
  color: #111827;
  margin: 0;
}
.role-form-card__body {
  padding: 1.5rem 1.75rem;
}

.role-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 640px) {
  .role-form-grid {
    grid-template-columns: 1fr;
  }
}

.role-form-field {
  display: flex;
  flex-direction: column;
}
.role-form-field label {
  font-weight: 600;
  font-size: 0.83rem;
  color: #6b7280;
  margin-bottom: 0.4rem;
  display: block;
}

.role-input {
  width: 100%;
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  color: #111827;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.role-input:focus {
  background: #fff;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
.role-input--textarea {
  resize: vertical;
  min-height: 90px;
}

.perm-group {
  margin-bottom: 1.75rem;
}
.perm-group:last-child {
  margin-bottom: 0;
}
.perm-group__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.perm-group__icon {
  color: #9ca3af;
  font-size: 0.85rem;
}
.perm-group__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #9ca3af;
  text-transform: uppercase;
}
.perm-group__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
@media (max-width: 640px) {
  .perm-group__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.perm-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: #fff;
}
.perm-checkbox:hover {
  border-color: #10b981;
  background: #f0fdf4;
}
.perm-checkbox__input {
  display: none;
}
.perm-checkbox__input:checked ~ .perm-checkbox__box {
  background: #10b981;
  border-color: #10b981;
}
.perm-checkbox__input:checked ~ .perm-checkbox__box::after {
  opacity: 1;
}
.perm-checkbox__input:checked ~ .perm-checkbox__label {
  color: #065f46;
  font-weight: 600;
}
.perm-checkbox__box {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid #d1d5db;
  flex-shrink: 0;
  position: relative;
  transition: all 0.15s;
}
.perm-checkbox__box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.15s;
}
.perm-checkbox__label {
  font-size: 0.88rem;
  color: #374151;
  font-weight: 500;
  transition: color 0.15s;
}

.role-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.role-table {
  width: 100%;
  border-collapse: collapse;
}
.role-table thead tr {
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}
.role-table th {
  padding: 0.85rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 0.06em;
  text-align: left;
}
.role-table__row {
  border-bottom: 1px solid #f3f4f6;
  cursor: pointer;
  transition: background 0.15s;
}
.role-table__row:last-child {
  border-bottom: none;
}
.role-table__row:hover {
  background: #f9fafb;
}
.role-table__row--active {
  background: #f0fdf4 !important;
}
.role-table td {
  padding: 1rem 1.5rem;
  vertical-align: middle;
}
.role-table__name {
  font-weight: 700;
  color: #111827;
  font-size: 0.95rem;
}
.role-table__count {
  color: #6b7280;
  font-size: 0.95rem;
  font-weight: 500;
}
.role-table__perms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.role-table__action {
  text-align: right;
}
.role-table__btn-select {
  font-weight: 700;
  font-size: 0.85rem;
  color: #10b981;
  cursor: pointer;
  letter-spacing: 0.01em;
  text-decoration: none !important;
}
.role-table__btn-select:hover {
  color: #059669;
}
.role-table__btn-select--active {
  color: #059669;
  text-transform: uppercase;
}
.role-table__btn-select--view {
  color: #10b981;
  cursor: pointer;
}
.role-table__btn-delete {
  background: none;
  border: none;
  color: #f87171;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0 0 0 0.75rem;
  opacity: 0.5;
  transition: opacity 0.15s;
}
.role-table__btn-delete:hover {
  opacity: 1;
}

.role-pill {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  background: #f3f4f6;
  color: #374151;
}
.role-pill--primary {
  background: #d1fae5;
  color: #065f46;
}

.role-matrix__title {
  font-weight: 800;
  font-size: 1.4rem;
  color: #111827;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.role-matrix__title i {
  color: #10b981;
  font-size: 1.2rem;
}
.role-matrix__role-name {
  color: #10b981;
}
.role-matrix__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .role-matrix__grid {
    grid-template-columns: 1fr;
  }
}

.role-edit-page {
  padding: 2rem;
}
.role-edit-page__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}
.role-edit-page__breadcrumb a {
  color: #6b7280;
  text-decoration: none;
}
.role-edit-page__breadcrumb a:hover {
  color: #111827;
}
.role-edit-page__breadcrumb span {
  color: #e65100;
  font-weight: 600;
}
.role-edit-page__breadcrumb i {
  font-size: 0.65rem;
}
.role-edit-page__title {
  font-weight: 800;
  font-size: 1.9rem;
  color: #111827;
  margin-bottom: 2rem;
}
.role-edit-page__title span {
  color: #111827;
}
.role-edit-page__footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
}

.role-edit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 640px) {
  .role-edit-grid {
    grid-template-columns: 1fr;
  }
}

.role-input--select {
  appearance: auto;
  background-image: none;
}

.perm-matrix {
  width: 100%;
  border-collapse: collapse;
}
.perm-matrix__th {
  padding: 0.85rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #9ca3af;
  text-align: center;
  border-bottom: 1px solid #f3f4f6;
  background: #fafafa;
}
.perm-matrix__th--module {
  text-align: left;
}
.perm-matrix__row {
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.15s;
}
.perm-matrix__row:last-child {
  border-bottom: none;
}
.perm-matrix__row:nth-child(odd) {
  background: #fff8f4;
}
.perm-matrix__row:hover {
  background: #fff3ee;
}
.perm-matrix__module {
  padding: 1rem 1.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #111827;
}
.perm-matrix__cell {
  text-align: center;
  padding: 0.85rem 1rem;
}
.perm-matrix__checkbox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.perm-matrix__input {
  display: none;
}
.perm-matrix__input:checked + .perm-matrix__box {
  background: #e65100;
  border-color: #e65100;
}
.perm-matrix__input:checked + .perm-matrix__box::after {
  opacity: 1;
}
.perm-matrix__box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid #d1d5db;
  position: relative;
  transition: all 0.15s;
  display: block;
}
.perm-matrix__box::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 7px;
  height: 11px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.15s;
}

.perm-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.perm-card__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.perm-card__icon {
  color: #6b7280;
  font-size: 1rem;
}
.perm-card__title {
  font-weight: 700;
  font-size: 1rem;
  color: #111827;
}
.perm-card__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid #f3f4f6;
}
.perm-card__item:last-child {
  border-bottom: none;
}
.perm-card__label {
  font-size: 0.88rem;
  color: #374151;
}
.perm-card__check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d1d5db;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.perm-card__check--on {
  background: #10b981;
  border-color: #10b981;
  color: #fff;
}

.impersonation-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1B5E20;
  color: #fff;
  padding: 0.875rem 2rem;
  gap: 1rem;
}
.impersonation-banner__left {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.88rem;
}
.impersonation-banner__left i {
  font-size: 1.1rem;
  opacity: 0.9;
}
.impersonation-banner__left strong {
  display: block;
  font-size: 0.9rem;
}
.impersonation-banner__left span {
  opacity: 0.85;
  font-size: 0.82rem;
}
.impersonation-banner__exit {
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.impersonation-banner__exit:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  text-decoration: none;
}
@media (max-width: 767px) {
  .impersonation-banner {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }
  .impersonation-banner__left {
    font-size: 0.78rem;
  }
  .impersonation-banner__left strong {
    font-size: 0.82rem;
  }
  .impersonation-banner__exit {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
  }
}

.impersonation-page {
  padding: 2rem;
}
.impersonation-page__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}
.impersonation-page__title {
  font-weight: 800;
  font-size: 1.75rem;
  color: #111827;
  margin-bottom: 0.3rem;
}
.impersonation-page__subtitle {
  color: #9ca3af;
  font-size: 0.9rem;
  margin: 0;
}
.impersonation-page__topbar-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.impersonation-page__topbar-icons .icon-wrapper {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 0.9rem;
  cursor: pointer;
}
.impersonation-page__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.impersonation-page__search-form {
  margin-bottom: 1.5rem;
}

.impersonation-search {
  position: relative;
}
.impersonation-search__icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 0.85rem;
}
.impersonation-search__input {
  width: 100%;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.875rem 1rem 0.875rem 2.8rem;
  font-size: 0.93rem;
  color: #111827;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.impersonation-search__input::placeholder {
  color: #9ca3af;
}
.impersonation-search__input:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.impersonation-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.impersonation-table {
  width: 100%;
  border-collapse: collapse;
}
.impersonation-table thead tr {
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}
.impersonation-table th {
  padding: 0.85rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 0.06em;
  text-align: left;
}
.impersonation-table td {
  padding: 1rem 1.5rem;
  vertical-align: middle;
}
.impersonation-table__row {
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.15s;
}
.impersonation-table__row:last-child {
  border-bottom: none;
}
.impersonation-table__row:hover {
  background: #f9fafb;
}
.impersonation-table__activity {
  color: #6b7280;
  font-size: 0.88rem;
}

.impersonation-user-cell {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.impersonation-user-cell__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.impersonation-user-cell__name {
  font-weight: 600;
  font-size: 0.93rem;
  color: #111827;
}
.impersonation-user-cell__email {
  font-size: 0.78rem;
  color: #9ca3af;
}

.impersonation-role-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}

.btn-impersonate {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1B5E20;
  color: #fff;
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-impersonate:hover {
  background: #2E7D32;
  color: #fff;
  text-decoration: none;
}

.impersonation-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-top: 1px solid #f3f4f6;
}
.impersonation-footer__info {
  font-size: 0.82rem;
  color: #9ca3af;
}

.player-registry {
  padding: 2rem;
}
@media (max-width: 767px) {
  .player-registry {
    padding: 0 0.75rem 1.5rem;
  }
}
.player-registry__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.player-registry__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 0.25rem;
}
.player-registry__subtitle {
  font-size: 0.875rem;
  color: #6B7280;
  margin: 0;
}
.player-registry__header-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.player-registry__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: opacity 0.15s, transform 0.15s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.player-registry__btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.player-registry__btn--pdf {
  background: #F97316;
  color: #fff !important;
}
.player-registry__btn--csv {
  background: #DCFCE7;
  color: #15803D !important;
  border: 1.5px solid #86EFAC;
}
.player-registry__btn--add {
  background: #15803D;
  color: #fff !important;
}
.player-registry__tabs {
  display: flex;
  gap: 0;
  border-bottom: 3px solid #E5E7EB;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.player-registry__tabs::-webkit-scrollbar {
  display: none;
}
.player-registry__tab {
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #6B7280;
  text-decoration: none !important;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.player-registry__tab:hover {
  color: #111827;
}
.player-registry__tab--active {
  color: #15803D;
  border-bottom-color: #15803D;
  font-weight: 600;
}
.player-registry__card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .player-registry__card {
    overflow-x: auto;
  }
}
.player-registry__filter-bar {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid #F3F4F6;
  background: #FAFAFA;
}
.player-registry__filter-form {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.player-registry__filter-select {
  border: 1.5px solid #D1D5DB;
  border-radius: 8px;
  padding: 0.4rem 0.75rem;
  font-size: 0.875rem;
  color: #374151;
  background: #fff;
  cursor: pointer;
  outline: none;
}
.player-registry__filter-select:focus {
  border-color: #15803D;
}
.player-registry__filter-reset {
  font-size: 0.8rem;
  color: #6B7280;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.player-registry__filter-reset:hover {
  color: #111827;
}
.player-registry__search {
  position: relative;
  flex: 1;
  max-width: 360px;
}
.player-registry__search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9CA3AF;
  font-size: 0.8rem;
  pointer-events: none;
}
.player-registry__search-input {
  width: 100%;
  border: 1.5px solid #D1D5DB;
  border-radius: 8px;
  padding: 0.4rem 2.2rem 0.4rem 2rem;
  font-size: 0.875rem;
  color: #374151;
  background: #fff;
  outline: none;
}
.player-registry__search-input:focus {
  border-color: #15803D;
}
.player-registry__search-input::placeholder {
  color: #9CA3AF;
}
.player-registry__search-clear {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #9CA3AF;
  cursor: pointer;
  padding: 0.2rem;
  font-size: 0.75rem;
}
.player-registry__search-clear:hover {
  color: #374151;
}

.player-table {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 767px) {
  .player-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
}
.player-table__th {
  padding: 0.75rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: #6B7280;
  letter-spacing: 0.06em;
  text-align: left;
  background: #F9FAFB;
  border-bottom: 1px solid #E5E7EB;
}
.player-table__th--avatar {
  width: 80px;
  text-align: center;
}
.player-table__th--actions {
  text-align: right;
}
.player-table__row {
  border-bottom: 1px solid #F3F4F6;
  transition: background 0.12s;
}
.player-table__row:hover {
  background: #F9FAFB;
}
.player-table__row:last-child {
  border-bottom: none;
}
.player-table__cell {
  padding: 1rem;
  font-size: 0.875rem;
  color: #374151;
  vertical-align: middle;
}
.player-table__cell--avatar {
  text-align: center;
}
.player-table__cell--team {
  color: #4B5563;
}
.player-table__cell--actions {
  text-align: right;
  white-space: nowrap;
}
.player-table__name {
  display: block;
  font-weight: 700;
  color: #111827;
  font-size: 0.9rem;
}
.player-table__id {
  display: block;
  font-size: 0.75rem;
  color: #9CA3AF;
  margin-top: 2px;
}
.player-table__empty {
  color: #9CA3AF;
}
.player-table__empty-row {
  text-align: center;
  padding: 3rem;
  color: #9CA3AF;
  font-size: 0.9rem;
}

.player-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #E0F2FE;
  color: #0369A1;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.5px;
}

.player-category-badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  background: #F3F4F6;
  color: #374151;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 8px;
  white-space: nowrap;
}

.player-compliance {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}
.player-compliance--ok {
  background: #DCFCE7;
  color: #15803D;
}
.player-compliance--warn {
  background: #FEE2E2;
  color: #DC2626;
}
.player-compliance--consent {
  background: #CCFBF1;
  color: #0F766E;
}
.player-compliance--neutral {
  background: #F3F4F6;
  color: #6B7280;
}

.player-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
}
.player-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.player-status--active {
  color: #111827;
}
.player-status--active::before {
  background: #22C55E;
}
.player-status--archived {
  color: #9CA3AF;
}
.player-status--archived::before {
  background: #D1D5DB;
}
.player-status--suspended {
  color: #D97706;
}
.player-status--suspended::before {
  background: #F59E0B;
}

.player-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: #6B7280 !important;
  text-decoration: none !important;
  background: transparent;
  transition: background 0.15s, color 0.15s;
  margin-left: 2px;
}
.player-action-icon:hover {
  background: #F3F4F6;
  color: #111827 !important;
}

.player-action-anonymize {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  background: #FEE2E2;
  color: #DC2626;
  border: none;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  margin-left: 4px;
}
.player-action-anonymize:hover {
  background: #FECACA;
}

.player-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-top: 1px solid #F3F4F6;
  background: #FAFAFA;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.player-pagination__info {
  font-size: 0.85rem;
  color: #6B7280;
}
.player-pagination__pages {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}
.player-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 0.5rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none !important;
  background: #fff;
  border: 1.5px solid #E5E7EB;
  transition: border-color 0.15s, background 0.15s;
}
.player-pagination__btn:hover {
  border-color: #15803D;
  color: #15803D;
}
.player-pagination__btn--active {
  background: #15803D;
  color: #fff !important;
  border-color: #15803D;
}
.player-pagination__btn--disabled {
  opacity: 0.4;
  pointer-events: none;
  background: #F9FAFB;
}

.player-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}
@media (max-width: 640px) {
  .player-stats {
    grid-template-columns: 1fr;
  }
}

.player-stat-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.player-stat-card--accent {
  border-left: 4px solid #15803D;
}
.player-stat-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.player-stat-card__icon--green {
  background: #DCFCE7;
  color: #15803D;
}
.player-stat-card__icon--teal {
  background: #CCFBF1;
  color: #0F766E;
}
.player-stat-card__icon--red {
  background: #FEE2E2;
  color: #DC2626;
}
.player-stat-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.player-stat-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #9CA3AF;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.player-stat-card__value {
  font-size: 1.75rem;
  font-weight: 800;
  color: #111827;
  line-height: 1;
}

.player-show {
  padding: 2rem;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  .player-show {
    padding: 0 0.75rem 1.5rem;
  }
}
.player-show__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6B7280;
  margin-bottom: 1.5rem;
}
.player-show__breadcrumb a {
  color: #6B7280;
  text-decoration: none;
}
.player-show__breadcrumb a:hover {
  color: #111827;
}
.player-show__breadcrumb i {
  font-size: 0.65rem;
}
.player-show__profile {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.player-show__profile-left {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.player-show__avatar-wrap {
  position: relative;
  flex-shrink: 0;
}
.player-show__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #E0E7FF;
  color: #4338CA;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -1px;
  border: 3px solid #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}
.player-show__avatar-dot {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #fff;
}
.player-show__avatar-dot--online {
  background: #22C55E;
}
.player-show__avatar-dot--offline {
  background: #9CA3AF;
}
.player-show__name {
  font-size: 1.6rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 0.4rem;
}
.player-show__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}
.player-show__category-badge {
  background: #FFF7ED;
  color: #EA580C;
  border: 1px solid #FED7AA;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  letter-spacing: 0.04em;
}
.player-show__id-pos {
  font-size: 0.875rem;
  color: #6B7280;
}
.player-show__joined {
  font-size: 0.8rem;
  color: #9CA3AF;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.player-show__profile-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}
.player-show__btn-edit {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border: 1.5px solid #D1D5DB;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151 !important;
  background: #fff;
  text-decoration: none !important;
  transition: border-color 0.15s;
}
.player-show__btn-edit:hover {
  border-color: #9CA3AF;
}
.player-show__btn-anonymize {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border: 1.5px solid #FECACA;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #DC2626;
  background: #FEF2F2;
  cursor: pointer;
  transition: background 0.15s;
}
.player-show__btn-anonymize:hover {
  background: #FEE2E2;
}
.player-show__tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #E5E7EB;
  margin-bottom: 1.75rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.player-show__tabs::-webkit-scrollbar {
  display: none;
}
.player-show__tab {
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #6B7280;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.player-show__tab:hover {
  color: #111827;
}
.player-show__tab--active {
  color: #EA580C;
  border-bottom-color: #EA580C;
  font-weight: 600;
}
.player-show__body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .player-show__body {
    grid-template-columns: 1fr;
  }
}
.player-show__panel {
  display: none;
}
.player-show__panel--active {
  display: block;
}
.player-show__main {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}
.player-show__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.ps-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  overflow: hidden;
}
.ps-card--gdpr {
  background: #FFF7ED;
  border-color: #FED7AA;
}
.ps-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #F3F4F6;
}
.ps-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.ps-card__icon--orange {
  background: #FFF7ED;
  color: #EA580C;
}
.ps-card__icon--red {
  background: #FEF2F2;
  color: #DC2626;
}
.ps-card__icon--green {
  background: #F0FDF4;
  color: #15803D;
}
.ps-card__icon-raw {
  color: #EA580C;
  font-size: 1rem;
  flex-shrink: 0;
}
.ps-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
  flex: 1;
}
.ps-card__aside {
  font-size: 0.78rem;
  color: #9CA3AF;
}
.ps-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: #EA580C;
  text-decoration: none;
}
.ps-card__link:hover {
  text-decoration: underline;
}
.ps-card__body {
  padding: 1.25rem;
}
.ps-card__body--flush {
  padding: 0;
}

.ps-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
}
@media (max-width: 600px) {
  .ps-info-grid {
    grid-template-columns: 1fr;
  }
}

.ps-info-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.ps-info-field__label {
  font-size: 0.68rem;
  font-weight: 700;
  color: #9CA3AF;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ps-info-field__value {
  font-size: 0.9rem;
  color: #111827;
  font-weight: 500;
  overflow-wrap: break-word;
  word-break: break-word;
}

.ps-perf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
@media (max-width: 767px) {
  .ps-perf-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ps-perf-stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.ps-perf-stat__value {
  font-size: 1.75rem;
  font-weight: 800;
  color: #EA580C;
  line-height: 1;
}
.ps-perf-stat__label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #9CA3AF;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ps-payments-table {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 767px) {
  .ps-payments-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
}
.ps-payments-table th {
  padding: 0.65rem 1.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: #9CA3AF;
  letter-spacing: 0.06em;
  text-align: left;
  border-bottom: 1px solid #F3F4F6;
  background: #FAFAFA;
}
.ps-payments-table td {
  padding: 0.9rem 1.25rem;
  font-size: 0.875rem;
  color: #374151;
  border-bottom: 1px solid #F9FAFB;
}
.ps-payments-table tr:last-child td {
  border-bottom: none;
}
.ps-payments-table tr:hover td {
  background: #FAFAFA;
}

.ps-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.65rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
}
.ps-badge--ok {
  background: #DCFCE7;
  color: #15803D;
}
.ps-badge--warn {
  background: #FEE2E2;
  color: #DC2626;
}
.ps-badge--pending {
  background: #FEF9C3;
  color: #A16207;
}
.ps-badge--neutral {
  background: #F3F4F6;
  color: #6B7280;
}

.ps-injury-card {
  border: 1px solid #F3F4F6;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.75rem;
}
.ps-injury-card--active {
  background: #FEF2F2;
  border-color: #FECACA;
}
.ps-injury-card__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.ps-injury-card__icon {
  color: #DC2626;
  font-size: 0.85rem;
}
.ps-injury-card__title {
  font-weight: 700;
  color: #111827;
  font-size: 0.9rem;
  flex: 1;
}
.ps-injury-card__status {
  font-size: 0.75rem;
  font-weight: 600;
}
.ps-injury-card__status--ok {
  color: #15803D;
}
.ps-injury-card__status--warn {
  color: #DC2626;
}
.ps-injury-card__body {
  font-size: 0.82rem;
  color: #6B7280;
  display: flex;
  gap: 1rem;
}
.ps-injury-card__desc {
  font-size: 0.8rem;
  color: #6B7280;
  margin: 0.4rem 0 0;
}

.ps-injury-alert {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.ps-injury-alert__icon {
  color: #DC2626;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.ps-injury-alert__title {
  font-weight: 700;
  color: #111827;
  font-size: 0.875rem;
}
.ps-injury-alert__sub {
  font-size: 0.75rem;
  color: #DC2626;
}
.ps-injury-alert__status {
  font-size: 0.78rem;
  color: #6B7280;
  margin-top: 0.2rem;
}

.ps-health-ok {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #15803D;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ps-med-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid #F3F4F6;
  font-size: 0.875rem;
}
.ps-med-row:last-child {
  border-bottom: none;
}
.ps-med-row__label {
  color: #6B7280;
}
.ps-med-row__value {
  font-weight: 600;
  color: #111827;
}
.ps-med-row__value--warn {
  color: #DC2626;
}

.ps-gdpr__text {
  font-size: 0.82rem;
  color: #92400E;
  line-height: 1.5;
  margin: 0 0 1rem;
}
.ps-gdpr__btn {
  width: 100%;
  padding: 0.65rem;
  background: #fff;
  border: 1.5px solid #374151;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #111827;
  cursor: pointer;
  transition: background 0.15s;
}
.ps-gdpr__btn:hover {
  background: #F9FAFB;
}
.ps-gdpr__request-date {
  font-size: 0.78rem;
  color: #9CA3AF;
  margin: 0.75rem 0 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.ps-empty {
  color: #9CA3AF;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  margin: 0;
}

.player-edit {
  padding: 2rem;
}
@media (max-width: 767px) {
  .player-edit {
    padding: 1rem;
  }
}
.player-edit__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.player-edit__header-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.player-edit__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #E0E7FF;
  color: #4338CA;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.player-edit__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 0.2rem;
  line-height: 1.3;
}
.player-edit__title-name {
  color: #15803D;
}
.player-edit__subtitle {
  font-size: 0.82rem;
  color: #9CA3AF;
  margin: 0;
}
.player-edit__header-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.player-edit__btn-cancel {
  padding: 0.55rem 1.25rem;
  border: 1.5px solid #D1D5DB;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151 !important;
  background: #fff;
  text-decoration: none !important;
  transition: border-color 0.15s;
}
.player-edit__btn-cancel:hover {
  border-color: #9CA3AF;
}
.player-edit__btn-save {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.25rem;
  background: #15803D;
  color: #fff !important;
  border: none;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.player-edit__btn-save:hover {
  background: #166534;
}
.player-edit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 860px) {
  .player-edit__grid {
    grid-template-columns: 1fr;
  }
}

.pe-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  overflow: hidden;
}
.pe-card--full {
  grid-column: 1/-1;
}
.pe-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #F3F4F6;
}
.pe-card__icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.pe-card__icon--green {
  background: #DCFCE7;
  color: #15803D;
}
.pe-card__title {
  font-size: 0.975rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
  flex: 1;
}
.pe-card__badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  letter-spacing: 0.05em;
}
.pe-card__badge--warn {
  background: #FEF9C3;
  color: #A16207;
}
.pe-card__badge--ok {
  background: #DCFCE7;
  color: #15803D;
}
.pe-card__body {
  padding: 1.25rem;
}

.pe-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.pe-grid-2:last-child {
  margin-bottom: 0;
}
@media (max-width: 520px) {
  .pe-grid-2 {
    grid-template-columns: 1fr;
  }
}

.pe-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.pe-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #6B7280;
  margin: 0;
}

.pe-input {
  width: 100%;
  padding: 0.55rem 0.85rem;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  font-size: 0.875rem;
  color: #111827;
  background: #fff;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.pe-input:focus {
  border-color: #15803D;
  box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.1);
}
.pe-input--select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7280' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.25rem;
  cursor: pointer;
}
.pe-input--textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}

.pe-gdpr-status {
  margin-bottom: 1.25rem;
}
.pe-gdpr-status__ok {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #15803D;
  flex-wrap: wrap;
}
.pe-gdpr-status__ok i {
  font-size: 0.9rem;
}
.pe-gdpr-status__missing {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #DC2626;
}
.pe-gdpr-status__missing i {
  font-size: 0.9rem;
}
.pe-gdpr-status__update {
  margin-left: auto;
  background: none;
  border: 1px solid #15803D;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #15803D;
  padding: 0.15rem 0.5rem;
  cursor: pointer;
  white-space: nowrap;
}
.pe-gdpr-status__update:hover {
  background: #DCFCE7;
}

.pe-rgpd-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: default;
}
.pe-rgpd-checkbox input[type=checkbox] {
  display: none;
}
.pe-rgpd-checkbox__mark {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: #15803D;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.pe-rgpd-checkbox__mark::after {
  content: "";
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  margin-top: -2px;
}
.pe-rgpd-checkbox__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.pe-rgpd-checkbox__text strong {
  font-size: 0.875rem;
  color: #111827;
}
.pe-rgpd-checkbox__text span {
  font-size: 0.78rem;
  color: #6B7280;
  line-height: 1.4;
}

.player-new {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}
@media (max-width: 767px) {
  .player-new {
    padding: 1rem 1rem 2rem;
  }
}
.player-new__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.player-new__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.25rem;
}
.player-new__subtitle {
  font-size: 0.875rem;
  color: #6B7280;
  margin: 0;
}
.player-new__header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.player-new__btn-cancel {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.25rem;
  border: 1.5px solid #D1D5DB;
  border-radius: 8px;
  background: #fff;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.player-new__btn-cancel:hover {
  background: #F9FAFB;
  border-color: #9CA3AF;
}
.player-new__btn-save {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.25rem;
  border: none;
  border-radius: 8px;
  background: #1B5E20;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.player-new__btn-save:hover {
  background: #2E7D32;
}
.player-new__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.pn-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  overflow: hidden;
}
.pn-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #F3F4F6;
}
.pn-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #E8F5E9;
  color: #2E7D32;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.pn-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}
.pn-card__body {
  padding: 1.5rem;
}
.pn-card__body--photo-layout {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .pn-card__body--photo-layout {
    flex-direction: column;
  }
}

.pn-photo-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.pn-photo-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #6B7280;
  text-transform: uppercase;
  align-self: flex-start;
}

.pn-photo-uploader {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 12px;
  border: 2px dashed #D1D5DB;
  background: #F9FAFB;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  cursor: pointer;
}

.pn-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  font-size: 1.5rem;
}

#pn-photo-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
}

.pn-photo-edit {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1B5E20;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.15s;
}
.pn-photo-edit:hover {
  background: #2E7D32;
}

.pn-photo-input {
  display: none;
}

.pn-photo-hint {
  font-size: 0.7rem;
  color: #9CA3AF;
  text-align: center;
}

.pn-fields-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 767px) {
  .pn-fields-grid {
    grid-template-columns: 1fr;
  }
}

.pn-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 520px) {
  .pn-grid-2 {
    grid-template-columns: 1fr;
  }
}

.pn-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 767px) {
  .pn-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 420px) {
  .pn-grid-3 {
    grid-template-columns: 1fr;
  }
}

.pn-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 991px) {
  .pn-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .pn-grid-4 {
    grid-template-columns: 1fr;
  }
}

.pn-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.pn-field label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #6B7280;
  text-transform: uppercase;
}

.pn-input {
  width: 100%;
  padding: 0.6rem 0.875rem;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-size: 0.875rem;
  color: #111827;
  background: #fff;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  font-family: inherit;
  box-sizing: border-box;
}
.pn-input::placeholder {
  color: #9CA3AF;
}
.pn-input:focus {
  border-color: #2E7D32;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}
.pn-input--select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7280' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.pn-rgpd-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  padding: 1rem;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  background: #FAFAFA;
}
.pn-rgpd-checkbox input[type=checkbox] {
  display: none;
}
.pn-rgpd-checkbox__mark {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 2px solid #D1D5DB;
  border-radius: 4px;
  background: #fff;
  margin-top: 0.1rem;
  transition: background 0.15s, border-color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
input[type=checkbox]:checked + .pn-rgpd-checkbox__mark {
  background: #1B5E20;
  border-color: #1B5E20;
}
input[type=checkbox]:checked + .pn-rgpd-checkbox__mark::after {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}
.pn-rgpd-checkbox__text {
  font-size: 0.8rem;
  color: #374151;
  line-height: 1.5;
}
.pn-rgpd-checkbox__text strong {
  color: #111827;
}

@media (max-width: 640px) {
  .player-show__btn-edit,
  .player-show__btn-anonymize {
    padding: 0.55rem 0.75rem;
    font-size: 0;
  }
  .player-show__btn-edit i,
  .player-show__btn-anonymize i {
    font-size: 0.875rem;
  }
  .ps-card__aside {
    display: none;
  }
  .ps-perf-stat__label {
    font-size: 0.6rem;
  }
  .ps-perf-stat__value {
    font-size: 1.4rem;
  }
  .ps-payments-table {
    display: block;
    overflow-x: auto;
  }
}
.coach-dashboard {
  padding: 0;
}

.coach-dashboard__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.coach-dashboard__greeting {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.25rem;
}

.coach-dashboard__subtitle {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.875rem;
}

.coach-dashboard__btn-summon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-800);
  color: #fff;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.coach-dashboard__btn-summon:hover {
  background: var(--green-700);
  color: #fff;
}

.coach-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 1024px) {
  .coach-kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .coach-kpi-grid {
    grid-template-columns: 1fr;
  }
}

.coach-kpi-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.coach-kpi-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.coach-kpi-card__icon--green {
  background: var(--green-50);
  color: var(--green-800);
}
.coach-kpi-card__icon--blue {
  background: #E3F2FD;
  color: #1565C0;
}
.coach-kpi-card__icon--orange {
  background: #FFF3E0;
  color: #E65100;
}
.coach-kpi-card__icon--purple {
  background: #F3E5F5;
  color: #6A1B9A;
}

.coach-kpi-card__body {
  display: flex;
  flex-direction: column;
}

.coach-kpi-card__value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.coach-kpi-card__label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.coach-main-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 1.25rem;
}
@media (max-width: 1024px) {
  .coach-main-grid {
    grid-template-columns: 1fr;
  }
}

.coach-col-left,
.coach-col-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.coach-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.coach-card__header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.coach-card__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.coach-card__title i {
  color: var(--green-700);
  font-size: 0.875rem;
}

.coach-card__body {
  padding: 1.25rem;
}
.coach-card__body--list {
  padding: 0;
}

.coach-event {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.15s;
}
.coach-event:last-child {
  border-bottom: none;
}
.coach-event:hover {
  background: var(--bg-hover);
}

.coach-event__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 40px;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  padding: 0.375rem 0.5rem;
  flex-shrink: 0;
}

.coach-event__day {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--green-800);
  line-height: 1;
}

.coach-event__month {
  font-size: 0.625rem;
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.coach-event__detail {
  flex: 1;
  min-width: 0;
}
.coach-event__detail strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.coach-event__detail span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.coach-event__badge {
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 0.2rem 0.6rem;
  flex-shrink: 0;
}
.coach-event__badge--match {
  background: #E3F2FD;
  color: #1565C0;
}
.coach-event__badge--session {
  background: var(--green-50);
  color: var(--green-800);
}

.coach-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  gap: 1rem;
}
.coach-result:last-child {
  border-bottom: none;
}
.coach-result:hover {
  background: var(--bg-hover);
}

.coach-result__info strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text-primary);
}
.coach-result__info span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.coach-result__score {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-800);
  background: var(--green-50);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.coach-team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
  gap: 1rem;
}
.coach-team-row:last-child {
  border-bottom: none;
}

.coach-team-row__info {
  display: flex;
  flex-direction: column;
}

.coach-team-row__name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.coach-team-row__count {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.coach-team-row__link {
  font-size: 0.8125rem;
  color: var(--green-700);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}
.coach-team-row__link:hover {
  color: var(--green-800);
}

.coach-quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
@media (max-width: 480px) {
  .coach-quick-actions {
    grid-template-columns: repeat(2, 1fr);
  }
}

.coach-quick-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  background: var(--green-50);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--green-800);
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  transition: background 0.15s, transform 0.15s;
}
.coach-quick-action:hover {
  background: var(--green-100);
  transform: translateY(-2px);
  color: var(--green-900);
}

.coach-quick-action__icon {
  font-size: 1.25rem;
}

.coach-empty {
  padding: 1.5rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin: 0;
}

/*# sourceMappingURL=app.output.css.map */
