    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: Inter, Arial, sans-serif;
      background: #f3f4f6;
      color: #111827;
    }

    .layout {
      display: grid;
      grid-template-columns: 320px 1fr;
      min-height: 100vh;
    }

    /* Sidebar */

    .sidebar {
      background: #111827;
      color: white;
      padding: 24px;
      overflow-y: auto;
      border-right: 1px solid rgba(255,255,255,0.08);
    }

    .sidebar h1 {
      margin-top: 0;
      font-size: 1.6rem;
      margin-bottom: 28px;
    }

    .event-card {
      margin-bottom: 24px;
      background: rgba(255,255,255,0.04);
      border-radius: 14px;
      padding: 16px;
    }

    .event-title {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .session-button {
      width: 100%;
      text-align: left;
      padding: 12px 14px;
      margin-bottom: 10px;
      border: none;
      border-radius: 10px;
      background: rgba(255,255,255,0.08);
      color: white;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .session-button:hover {
      background: #2563eb;
      transform: translateY(-1px);
    }

    .session-button.active {
      background: #2563eb;
    }

    .session-date {
      display: block;
      margin-top: 4px;
      font-size: 0.82rem;
      opacity: 0.75;
    }

    /* Main Content */

    .content {
      padding: 32px;
      overflow-y: auto;
    }

    .toolbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px;
      gap: 16px;
      flex-wrap: wrap;
    }

    .toolbar-left h2 {
      margin: 0;
      font-size: 2rem;
    }

    .toolbar-left p {
      margin: 6px 0 0;
      color: #6b7280;
    }

    .toolbar-right {
      display: flex;
      gap: 12px;
    }

    .button {
      border: none;
      border-radius: 10px;
      padding: 12px 18px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.2s ease;
    }

    .button-primary {
      background: #2563eb;
      color: white;
    }

    .button-primary:hover {
      background: #1d4ed8;
    }

    .button-secondary {
      background: white;
      border: 1px solid #d1d5db;
    }

    .button-secondary:hover {
      background: #f9fafb;
    }

    /* Cards */

    .card {
      background: white;
      border-radius: 18px;
      padding: 24px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.05);
      border: 1px solid #e5e7eb;
    }

    /* Table */

    .table-wrapper {
      overflow-x: auto;
    }

    table {
      width: 100%;
      border-collapse: collapse;
    }

    thead {
      background: #f9fafb;
    }

    th {
      text-align: left;
      padding: 14px;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      color: #6b7280;
      border-bottom: 1px solid #e5e7eb;
    }

    td {
      padding: 16px 14px;
      border-bottom: 1px solid #f3f4f6;
      vertical-align: top;
    }

    tbody tr:hover {
      background: #f9fafb;
    }

    .player-name {
      font-weight: 700;
      color: #111827;
    }

    .sub-text {
      margin-top: 4px;
      font-size: 0.85rem;
      color: #6b7280;
    }

    /* Status */

    .status-pill {
      display: inline-flex;
      align-items: center;
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 0.8rem;
      font-weight: 600;
    }

    .status-confirmed {
      background: #dcfce7;
      color: #166534;
    }

    .status-pending {
      background: #fef3c7;
      color: #92400e;
    }

    .status-cancelled {
      background: #fee2e2;
      color: #991b1b;
    }

    /* Tryout Details */

    .tryout-details {
      margin-top: 14px;
      padding: 16px;
      background: #f9fafb;
      border-radius: 12px;
      border: 1px solid #e5e7eb;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 12px;
    }

    .detail-item {
      font-size: 0.92rem;
      line-height: 1.5;
    }

    .detail-item strong {
      color: #111827;
    }

    /* Empty State */

    .empty-state {
      text-align: center;
      padding: 80px 20px;
      color: #6b7280;
    }

    .empty-state h3 {
      color: #111827;
    }

    /* Mobile */

    @media (max-width: 1024px) {

      .layout {
        grid-template-columns: 1fr;
      }

      .sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
      }

    }

    @media (max-width: 768px) {

      .content {
        padding: 20px;
      }

      .toolbar {
        flex-direction: column;
        align-items: flex-start;
      }

      .toolbar-left h2 {
        font-size: 1.5rem;
      }

      table {
        min-width: 900px;
      }

    }