#resultats-membres {
    max-width: 900px;
    margin: 24px auto;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px #0001;
    padding: 10px 4px 16px 4px;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 13px;
}

.member-info {
    text-align: left;
    font-size: 12px;
    color: #222;
    margin-bottom: 7px;
    line-height: 1.3;
    font-weight: 400;
}

.member-name {
    display: none;
}

.rm-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.btn-prev, .btn-next {
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 3px 10px;
    font-weight: 600;
    font-size: 0.95em;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-prev:disabled, .btn-next:disabled {
    background: #b6c6e3;
    cursor: not-allowed;
}
.btn-prev:hover:not(:disabled), .btn-next:hover:not(:disabled) {
    background: #1e40af;
}

.table-resultats {
    width: 100%;
    min-width: 400px;
    border-collapse: collapse;
    background: #f7fafc;
    font-size: 12px;
    border: 1px solid #b6c6e3;
    border-radius: 4px;
    overflow: hidden;
}

.table-resultats thead th {
    background: #2563eb;
    color: #fff;
    font-weight: 700;
    padding: 5px 1px;
    border: none;
    font-size: 12px;
    letter-spacing: 0.2px;
}
.table-resultats th, .table-resultats td {
    text-align: center;
    padding: 4px 1px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 12px;
    max-width: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.table-resultats td {
    color: #222;
    background: #f7fafc;
}
.table-resultats tr:last-child td {
    border-bottom: none;
}

.table-resultats tbody tr:hover {
    background: #e0e7ef;
}

.positif {
    color: #059669 !important;
    font-weight: 600;
}
.negatif {
    color: #dc2626 !important;
    font-weight: 600;
}
.ligne-cumul {
    background: #e0e7ef !important;
    font-style: italic;
    font-size: 12px;
}
.ligne-dernier {
    background: #e6ffe6 !important;
    font-weight: bold;
    font-size: 12.5px;
    border-top: 2px solid #2563eb;
}
.rm-message {
    color: #dc2626;
    text-align: center;
    margin-top: 8px;
    font-weight: bold;
}