/* Teams page specific styles */

/* Page header styles */
.page-header {
    text-align: center;
    margin-bottom: 2rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

/* Teams table section */
.teams-table-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.table-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Teams table styles */
.teams-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    color: #374151;
}

.teams-table th {
    background-color: #f3f4f6;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 2px solid #e5e7eb;
}

.teams-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: middle;
}

.teams-table tbody tr:hover {
    background-color: #f9fafb;
    transition: background-color 0.2s ease;
}

.teams-table tbody tr:last-child td {
    border-bottom: none;
}

/* Team name link styles */
.team-name-link {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3em;
    transition: color 0.2s ease;
    display: block;
    width: 100%;
}

.team-name-link:hover {
    color: #3b82f6;
    text-decoration: underline;
}

/* Loading and error states */
.loading {
    text-align: center;
    padding: 2rem;
    color: #6b7280;
    font-style: italic;
}

.no-results {
    text-align: center;
    padding: 2rem;
    color: #6b7280;
}

.no-results h3 {
    margin-bottom: 0.5rem;
    color: #374151;
}

.no-results p {
    font-size: 0.9rem;
}

/* Error state */
.error {
    text-align: center;
    padding: 2rem;
    color: #dc2626;
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    margin: 1rem 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .teams-table-section {
        padding: 0 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .teams-table th,
    .teams-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .team-name-link {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.75rem;
    }
} 