/* Pickleball BC Board Reports – frontend */
.pbc-br-wrap {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 100%;
    margin: 0 auto;
}

/* Year tabs */
.pbc-br-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 1.5em;
    border-bottom: 3px solid #014a95;
    padding-bottom: 0;
}
.pbc-br-tab {
    background: #e8eef5;
    color: #014a95;
    border: none;
    border-radius: 6px 6px 0 0;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.pbc-br-tab:hover {
    background: #014a95;
    color: #fff;
}
.pbc-br-tab--active {
    background: #014a95;
    color: #fff;
}

/* Panels */
.pbc-br-panel {
    padding: 0.5em 0;
}

/* Category sections */
.pbc-br-category {
    margin-bottom: 1.5em;
}
.pbc-br-category-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #014a95;
    margin: 0 0 0.6em 0;
    padding-bottom: 0.35em;
    border-bottom: 2px solid #ffc801;
}

/* Report list */
.pbc-br-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 8px 24px;
}
.pbc-br-item {
    margin: 0;
    padding: 0;
}
.pbc-br-item a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #212326;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    padding: 4px 0;
    transition: color 0.15s;
}
.pbc-br-item a:hover {
    color: #014a95;
    text-decoration: underline;
}
.pbc-br-icon {
    font-size: 16px;
    flex-shrink: 0;
}

/* Empty state */
.pbc-br-empty {
    color: #747474;
    font-style: italic;
}

/* Responsive */
@media (max-width: 600px) {
    .pbc-br-tabs {
        gap: 4px;
    }
    .pbc-br-tab {
        padding: 8px 14px;
        font-size: 14px;
    }
    .pbc-br-list {
        grid-template-columns: 1fr;
    }
}
