@layer page {
  table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
  }
  table th, table td {
    border: 1px solid #ccc;
    padding: 12px;
    text-align: center;
  }
  table th {
    background-color: #52517a;
    color: white;
    font-weight: 500;
  }
  table thead th {
    text-align: center;
  }
  table td {
    transition: background-color 0.3s ease;
  }
  table tr:hover td {
    background-color: #f8f9fa;
  }
  @media (max-width: 991px) {
    .table-responsive {
      display: block;
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      -ms-overflow-style: -ms-autohiding-scrollbar;
      margin: 20px 0;
      background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    }
    table {
      margin: 0;
    }
    table th, table td {
      min-width: 160px;
      white-space: nowrap;
    }
  }
  .note {
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #52517a;
    border-radius: 4px;
  }
  .stats-section {
    margin-bottom: 40px;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
  }
  .stat-card {
    background: linear-gradient(135deg, #52517a, #003366);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(82, 81, 122, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #64ffda, #00bcd4, #64ffda);
  }
  .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(82, 81, 122, 0.4);
  }
  .stat-number {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 8px;
    color: #64ffda;
  }
  .stat-label {
    font-size: 0.9em;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .search-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  .search-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 20px;
    align-items: end;
  }
  .search-group {
    display: flex;
    flex-direction: column;
  }
  .search-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #52517a;
    font-size: 0.9em;
  }
  .search-group input, .search-group select {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
  }
  .search-group input:focus, .search-group select:focus {
    outline: none;
    border-color: #52517a;
    box-shadow: 0 0 0 3px rgba(82, 81, 122, 0.1);
  }
  .search-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #52517a, #003366);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(82, 81, 122, 0.3);
  }
  .table-section {
    margin-bottom: 40px;
  }
  .table-header {
    text-align: center;
    margin-bottom: 30px;
  }
  .table-header h2 {
    color: #52517a;
    margin-bottom: 10px;
    font-size: 2em;
  }
  .table-header p {
    color: #666;
    font-size: 1.1em;
  }
  .table-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
  }
  .participants-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
  }
  .participants-table th {
    background: linear-gradient(135deg, #52517a, #003366);
    color: white;
    padding: 12px 10px;
    text-align: left;
    font-weight: 600;
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }
  .participants-table td {
    padding: 10px 10px;
    border-bottom: 1px solid #f1f3f4;
    vertical-align: middle;
    color: #333;
    font-size: 0.85em;
  }
  .participants-table tr:hover {
    background: #f8f9fa;
    transition: all 0.2s ease;
  }
  .participants-table tr:last-child td {
    border-bottom: none;
  }
  .go-player-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
  }
  .go-player-yes {
    background: #d4edda;
    color: #155724;
  }
  .go-player-no {
    background: #f8d7da;
    color: #721c24;
  }
  .loading {
    text-align: center;
    padding: 50px;
    color: #666;
  }
  .spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #52517a;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
  }
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 8px;
  }
  .pagination button {
    padding: 10px 16px;
    border: 2px solid #e9ecef;
    background: white;
    color: #52517a;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
  }
  .pagination button:hover {
    border-color: #52517a;
    background: #f8f9fa;
  }
  .pagination button.active {
    background: #52517a;
    color: white;
    border-color: #52517a;
  }
  .pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  .chart-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
  .chart-header {
    text-align: center;
    margin-bottom: 30px;
  }
  .chart-header h3 {
    color: #52517a;
    margin-bottom: 10px;
    font-size: 1.5em;
  }
  .chart-header p {
    color: #666;
    font-size: 1em;
  }
  .chart-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    margin-bottom: 20px;
    padding: 10px 0;
    scroll-behavior: smooth;
  }
  .chart-container::-webkit-scrollbar {
    height: 8px;
  }
  .chart-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
  }
  .chart-container::-webkit-scrollbar-thumb {
    background: #52517a;
    border-radius: 4px;
  }
  .chart-container::-webkit-scrollbar-thumb:hover {
    background: #003366;
  }
  .country-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f8f9fa;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 140px;
    flex-shrink: 0;
    white-space: nowrap;
  }
  .country-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: #52517a;
  }
  .country-item.active {
    background: #d8d9da;
  }
  .country-flag {
    width: 24px;
    height: 18px;
    border-radius: 3px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .country-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .country-name {
    font-weight: 600;
    color: #333;
    font-size: 0.9em;
  }
  .country-count {
    background: #52517a;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 600;
    margin-left: auto;
  }
  .chart-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
  }
  .legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85em;
  }
  .legend-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
  }
  .legend-text {
    color: #666;
  }
  @media (max-width: 991px) {
    .search-grid {
      grid-template-columns: 1fr;
      gap: 15px;
    }
    .stats-grid {
      grid-template-columns: 1fr;
      gap: 15px;
    }
    .search-section {
      padding: 20px;
    }
    .participants-table {
      min-width: 600px;
    }
    .participants-table th, .participants-table td {
      padding: 8px 6px;
      font-size: 0.75em;
    }
    .chart-container {
      flex-direction: row;
      overflow-x: auto;
      padding: 5px 0;
    }
    .country-item {
      min-width: 120px;
      padding: 8px 12px;
    }
    .country-flag {
      width: 20px;
      height: 15px;
    }
    .country-name {
      font-size: 0.8em;
    }
    .country-count {
      font-size: 0.7em;
      padding: 2px 6px;
    }
    .chart-section {
      padding: 20px;
    }
  }
  /* tablesort */
  th[role=columnheader]:not(.no-sort) {
    cursor: pointer;
  }
  th[role=columnheader]:not(.no-sort):after {
    content: "";
    margin-top: -5px;
    margin-left: 7px;
    border-width: 0 4px 4px;
    border-style: solid;
    border-color: #ffffff transparent;
    visibility: hidden;
    opacity: 0;
    -ms-user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    display: inline-block;
    vertical-align: super;
  }
  th[aria-sort=ascending]:not(.no-sort):after {
    border-bottom: none;
    border-width: 4px 4px 0;
  }
  th[aria-sort]:not(.no-sort):after {
    visibility: visible;
    opacity: 0.4;
  }
  th[role=columnheader]:not(.no-sort):hover:after {
    visibility: visible;
    opacity: 1;
  }
  /* table filtering */
  #participants-table tbody tr.hidden-country, tr.hidden-choice, tr.hidden-name {
    display: none;
  }
}

/*# sourceMappingURL=participants-list.css.map */
