/**
 * Cricket Match Scheduled Scorecard Styles
 * REFACTORED: Extracted from tab-scorecard-scheduled.php
 */

/* WRAPPER */
.squad-wrapper {
    max-width: 980px;
    margin: 0 auto;
    background: #ffffff;
}

/* TEAM TABS */
.squad-tabs {
    display: flex;
    justify-content: space-around;
    border-bottom: 1px solid #d1d5db;
}

.squad-tab {
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.squad-tab.active {
    color: #2563eb;
}

.squad-tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: #2563eb;
}

/* TABLE HEADER */
.squad-header {
    display: grid;
    grid-template-columns: 1fr 140px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    background:
        url("https://d37aw1mafvpirm.cloudfront.net/static/images/pattern.png?v=0.01"),
        linear-gradient(180deg, #2f63ff, #2a55f3);
}

/* ROW */
.squad-row {
    display: grid;
    grid-template-columns: 1fr 140px;
    padding: 7px 9px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 13px;
    align-items: center;
}

/* PLAYER NAME */
.player-name {
    font-weight: 600;
    color: #111827;
}

/* ROLE */
.player-role {
    text-align: right;
    font-weight: 600;
    color: #111827;
}

/* SUBTEXT */
.player-meta {
    font-size: 11px;
    color: #6b7280;
    margin-top: 2px;
}

/* INFO ROW */
.squad-info {
    padding: 14px 16px;
    font-size: 13px;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

/* TEAM CONTENT */
.team-content {
    display: none;
}

.team-content.active {
    display: block;
}


