/* ===== Palmarés ARF – Frontend v3 ===== */

.palmares-arf-wrap {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    width: 100%;
    box-sizing: border-box;
}

.pal-section {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

/* Header bar */
.pal-section-header {
    background: #6c3fc5;
    padding: 0;
    display: flex;
    align-items: stretch;
}

.pal-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    flex: 1;
}

.pal-header-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.pal-header-title {
    color: #fff;
    font-size: 1.15em;
    font-weight: 700;
    letter-spacing: .04em;
    margin: 0;
    text-transform: uppercase;
}

/* Tab nav */
.pal-tabs {
    display: flex;
    border-bottom: none;
    background: #fff;
}

.pal-tab {
    padding: 12px 26px;
    font-size: .9em;
    font-weight: 600;
    cursor: default;
    border-bottom: 3px solid transparent;
    color: #888;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.pal-tab.active {
    color: #6c3fc5;
    border-bottom-color: #6c3fc5;
}

/* Table */
.pal-table-wrap {
    width: 100%;
    overflow-x: auto;
    background: #fff;
}

table.pal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1em;
    table-layout: auto;
}

table.pal-table thead tr {
    background: #f5f5f5;
}

table.pal-table thead th {
    padding: 12px 16px;
    text-align: left;
    font-size: .82em;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: .06em;
    border-bottom: 1px solid #e8e8e8;
    white-space: nowrap;
}

/* Column widths — give club/torneo room to breathe */
table.pal-table thead th.col-num    { width: 60px;  text-align: center; }
table.pal-table thead th.col-logo   { width: 70px;  text-align: center; }
table.pal-table thead th.col-club   { width: auto; }
table.pal-table thead th.col-torneo { width: 40%; }

table.pal-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background .15s;
}

table.pal-table tbody tr:last-child { border-bottom: none; }
table.pal-table tbody tr:hover { background: #f9f6ff; }

table.pal-table tbody td {
    padding: 12px 16px;
    vertical-align: middle;
    color: #222;
    white-space: nowrap;
}

.pal-row-num {
    text-align: center;
    font-weight: 700;
    font-size: 1em;
    color: #999;
    width: 60px;
}

/* Logo cell — bigger, clearer */
.pal-logo-wrap {
    text-align: center;
    width: 70px;
}

.pal-logo-wrap img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

.col-club-name {
    font-weight: 600;
    font-size: 1em;
    white-space: nowrap;
}

.col-club-name a {
    color: #1a1a1a;
    text-decoration: none;
}

.col-club-name a:hover { color: #6c3fc5; text-decoration: underline; }

.col-torneo {
    color: #555;
    font-size: .95em;
    white-space: nowrap;
}

/* Legend */
.pal-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding: 10px 14px;
    background: #fafafa;
    border-top: 1px solid #ebebeb;
    font-size: .82em;
    color: #666;
}

.pal-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pal-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.palmares-arf-empty {
    padding: 20px;
    text-align: center;
    color: #888;
    font-style: italic;
}

/* Responsive */
@media (max-width: 720px) {
    .pal-header-logo { width: 36px; height: 36px; }
    .pal-header-title { font-size: 1em; }
    .pal-header-left { padding: 14px 16px; gap: 10px; }
    table.pal-table thead th,
    table.pal-table tbody td { padding: 10px 12px; }
    .pal-logo-wrap img { width: 38px; height: 38px; }
    table.pal-table thead th.col-num   { width: 44px; }
    table.pal-table thead th.col-logo  { width: 56px; }
    .pal-row-num { width: 44px; }
    .pal-logo-wrap { width: 56px; }
    .col-club-name { font-size: .92em; }
    .col-torneo { font-size: .88em; }
}

@media (max-width: 480px) {
    table.pal-table { font-size: .88em; }
    .col-torneo { white-space: normal; }
}
