/* Minimal Component Styles */
.component-loader, .component-error, .component-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    min-height: 200px;
}

.component-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    min-height: auto;
    padding: 20px;
}

.component-loader i, .component-error i, .component-empty i {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--club-primary, #667eea);
}

.component-error i { color: #dc3545; }
.component-empty i { color: #6c757d; }

/* Filter Component */
.filter-container {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
}

.filter-group {
    min-width: 150px;
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 5px;
    font-weight: 500;
}

.filter-input, .filter-select {
    padding: 8px 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 13px;
    background: white;
    color: #333;
    height: 38px;
    box-sizing: border-box;
}

.filter-actions {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

/* Pagination Component */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
    margin-top: 20px;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pagination-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.items-per-page-select {
    padding: 6px 10px;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    font-size: 12px;
}

/* Games Table */
.games-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.games-table th {
    background: var(--theme-primary, #111037);
    color: white;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
}

.games-table th.center { text-align: center; }
.games-table th.sortable { cursor: pointer; }

.games-table td {
    padding: 12px;
    border-bottom: 1px solid #f1f3f4;
    font-size: 13px;
}

.games-table td.center { text-align: center; }
.games-table tr:hover { background: #f8f9fa; }

.date-cell .date { font-weight: 500; color: #495057; }
.date-cell .time { font-size: 12px; color: #6c757d; }

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

.teams-display .user-team {
    font-weight: 700;
    color: var(--club-primary, #667eea);
}

.live-score { color: #f59e0b; font-weight: 600; }
.cancelled { color: #ef4444; font-weight: 600; }

.action-buttons {
    display: flex;
    gap: 4px;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .filter-row { flex-direction: column; align-items: stretch; }
    .filter-group { min-width: auto; }
    .pagination-container { flex-direction: column; gap: 15px; }
    .games-table { font-size: 12px; }
    .games-table th, .games-table td { padding: 8px 4px; }
    .action-buttons { flex-direction: column; }
}