[data-scope="admin"] {
  .club-details-page {
    padding: 0;
  }

  /* Page Header - matches clubs index pattern */
  .page-header {
    margin-bottom: 2rem;
  }

  .club-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
  }

  .club-info h1 {
    margin: 0;
    font-size: 2rem;
    color: var(--text);
    font-weight: 600;
  }

  .club-description {
    color: var(--text-secondary);
    margin: 0.5rem 0 1rem 0;
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .club-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 1rem;
  }

  .club-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Section Headers - consistent with other admin pages */
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }

  .section-header h2 {
    margin: 0;
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 600;
  }

  /* Activities Section */
  .club-activities {
    margin-bottom: 3rem;
  }

  .activities-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .activity-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }

  .activity-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--light-grey);
  }

  .activity-header h3 {
    margin: 0;
    color: var(--text);
    font-size: 1.125rem;
    font-weight: 600;
  }

  .activity-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
  }

  .activity-venue,
  .activity-pricing {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--background);
    border-radius: 4px;
    font-size: 0.875rem;
  }

  .activity-venue strong,
  .activity-pricing strong {
    color: var(--text);
    display: block;
    margin-bottom: 0.25rem;
  }

  .activity-venue {
    color: var(--text-secondary);
  }

  .pricing-content {
    display: block;
    color: var(--text-secondary);
    line-height: 1.5;
  }

  /* Slots Section */
  .slots-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .slot-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-grey);
    border: 1px solid var(--medium-grey);
    border-radius: 6px;
    padding: 1rem;
    transition: background-color 0.2s ease;
  }

  .slot-card:hover {
    background: var(--background);
  }

  .slot-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex-grow: 1;
  }

  .slot-day {
    font-weight: 600;
    color: var(--text);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
  }

  .slot-time {
    color: var(--brand-primary);
    font-weight: 500;
    font-size: 1rem;
  }

  .slot-age,
  .slot-repeat {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-style: italic;
  }

  .slot-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
  }

  /* Comments Section */
  .club-comments {
    margin-bottom: 2rem;
  }

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

  .comment-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }

  .comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--light-grey);
  }

  .comment-author {
    font-weight: 600;
    color: var(--text);
    font-size: 0.875rem;
  }

  .comment-date {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-style: italic;
  }

  .comment-content {
    color: var(--text);
    line-height: 1.6;
    font-size: 0.875rem;
  }

  .comment-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }

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

  .comment-form .form-label {
    display: block;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
  }

  .comment-form .form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--medium-grey);
    border-radius: 6px;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    resize: vertical;
    font-family: inherit;
  }

  .comment-form .form-control:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(149, 101, 254, 0.1);
  }

  .comment-form .form-actions {
    display: flex;
    justify-content: flex-end;
  }

  /* Empty States */
  .empty-state,
  .empty-slots {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-secondary);
    background: var(--background);
    border: 2px dashed var(--medium-grey);
    border-radius: 8px;
    margin: 1rem 0;
  }

  .empty-state p,
  .empty-slots p {
    margin: 0;
    font-size: 0.875rem;
    font-style: italic;
  }

  /* Button Variations */
  .btn-sm {
    padding: 0.5rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 4px;
  }

  .btn-outline {
    background: transparent;
    border: 1px solid var(--medium-grey);
    color: var(--text-secondary);
    transition: all 0.2s ease;
  }

  .btn-outline:hover {
    background: var(--light-grey);
    border-color: var(--dark-grey);
    color: var(--text);
  }

  .btn-danger {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    transition: all 0.2s ease;
  }

  .btn-danger:hover {
    background-color: #dc2626;
    border-color: #b91c1c;
    color: var(--white);
  }

  .btn-disabled {
    background-color: var(--light-grey) !important;
    border-color: var(--medium-grey) !important;
    color: var(--dark-grey) !important;
    cursor: not-allowed !important;
    opacity: 0.6;
  }

  .btn-disabled:hover {
    background-color: var(--light-grey) !important;
    border-color: var(--medium-grey) !important;
    color: var(--dark-grey) !important;
  }

  .icon {
    width: 0.875rem;
    height: 0.875rem;
  }

  /* Rich Text Content */
  .club-description,
  .pricing-content,
  .comment-content {
    line-height: 1.6;
  }

  .club-description p,
  .pricing-content p,
  .comment-content p {
    margin: 0.5rem 0;
  }

  .club-description ul,
  .club-description ol,
  .pricing-content ul,
  .pricing-content ol {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
  }

  .club-description li,
  .pricing-content li {
    margin: 0.25rem 0;
  }

  .club-description strong,
  .pricing-content strong {
    font-weight: 600;
  }

  .club-description em,
  .pricing-content em {
    font-style: italic;
  }

  .club-description a,
  .pricing-content a {
    color: var(--brand-primary);
    text-decoration: underline;
  }

  /* Modal Styles */
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    overflow-y: auto;
    padding: 1rem;
  }

  .modal.hidden {
    display: none;
  }

  .modal-content {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .modal-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
  }

  .modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.25rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
  }

  .modal-close:hover {
    color: var(--text);
    background: var(--light-grey);
  }

  /* Form Styles */
  .club-form,
  .club-activity-form,
  .slot-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .form-row {
    display: flex;
    gap: 1rem;
  }

  .form-row .form-group {
    flex: 1;
  }

  .form-label {
    font-weight: 600;
    color: var(--text);
    font-size: 0.875rem;
  }

  .form-control {
    padding: 0.75rem;
    border: 1px solid var(--medium-grey);
    border-radius: 6px;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    font-family: inherit;
    background: var(--white);
  }

  .form-control:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(149, 101, 254, 0.1);
  }

  .form-control:disabled {
    background: var(--light-grey);
    color: var(--text-secondary);
    cursor: not-allowed;
  }

  .form-checkbox {
    width: auto;
    margin-right: 0.5rem;
  }

  .form-checkbox-label {
    display: flex;
    align-items: center;
    font-weight: normal;
  }

  .form-help {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 0.25rem;
  }

  .form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
  }

  /* Prevent body scroll when modal is open */
  body.modal-open {
    overflow: hidden;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .club-header {
      flex-direction: column;
      gap: 1rem;
      align-items: flex-start;
    }

    .activity-header {
      flex-direction: column;
      gap: 1rem;
      align-items: flex-start;
    }

    .activity-actions {
      width: 100%;
      justify-content: flex-start;
      flex-wrap: wrap;
    }

    .slot-card {
      flex-direction: column;
      gap: 1rem;
      align-items: flex-start;
    }

    .slot-actions {
      width: 100%;
      justify-content: flex-start;
    }

    .section-header {
      flex-direction: column;
      gap: 1rem;
      align-items: flex-start;
    }
  }
}