body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

h1 {
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.table-container {
    overflow-x: auto;
    margin-top: 10px;
}

.clusters-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9em;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.clusters-table th {
    background: #2c5aa0;
    color: white;
    padding: 12px 8px;
    text-align: left;
    font-weight: bold;
    border-bottom: 2px solid #1e3f73;
}

.clusters-table td {
    padding: 8px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: top;
}

.clusters-table tr:nth-child(even) {
    background: #fafafa;
}

.cluster-name {
    font-weight: bold;
    color: #2c5aa0;
}

.prow-type {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.75em;
    margin-bottom: 4px;
}

.pull-request {
    background: #e9ecef;
    padding: 4px 6px;
    border-radius: 3px;
    margin-bottom: 4px;
    font-size: 0.8em;
}

.pull-title {
    font-weight: bold;
    margin-bottom: 2px;
    display: block;
    color: #2c5aa0;
    text-decoration: none;
}

.pull-title:hover {
    text-decoration: underline;
    color: #1e3f73;
}

.pull-meta {
    font-size: 0.75em;
    color: #666;
}

.prow-url {
    margin-top: 4px;
}

.prow-url a {
    color: #28a745;
    text-decoration: none;
    font-size: 0.8em;
}

.prow-url a:hover {
    text-decoration: underline;
}

.repo-info {
    font-size: 0.8em;
    color: #666;
    margin-bottom: 4px;
}

.prow-job-cell {
    max-width: 300px;
    word-wrap: break-word;
}

.prowjob-id {
    font-family: monospace;
    font-size: 0.8em;
    background: #f8f9fa;
    padding: 2px 4px;
    border-radius: 3px;
}

.job-name {
    font-size: 0.75em;
    color: #666;
    font-style: italic;
    margin-top: 2px;
}

.error {
    color: #dc3545;
    background: #f8d7da;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
}

.loading {
    text-align: center;
    padding: 15px;
    color: #666;
}

.updated {
    text-align: center;
    color: #666;
    font-size: 0.9em;
    margin-bottom: 10px;
}