.tippspiel {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.tippspiel-filter {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.tippspiel-filter label {
    font-weight: 600;
}

.tippspiel-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.tippspiel-table {
    width: 100%;
    border-collapse: collapse;
}

.tippspiel-table th,
.tippspiel-table td {
    padding: .55rem .65rem;
    white-space: nowrap;
    vertical-align: middle;
}

.tippspiel-table th {
    font-weight: 700;
    border-bottom: 2px solid currentColor;
}

.tippspiel-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, .12);
}

.tippspiel-table tbody tr:nth-child(odd) {
    background: rgba(0, 0, 0, .04);
}

.tippspiel-num {
    text-align: right;
}

.tippspiel-player {
    display: flex;
    align-items: center;
    gap: .4rem;
    min-width: 160px;
}

.tippspiel-logo,
.tippspiel-avatar {
    display: inline-block;
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    object-fit: contain;
    flex: 0 0 22px;
}


.tippspiel-avatar {
    border-radius: 5%;
    object-fit: cover;
}


.tippspiel-player img {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
}

.tippspiel-points {
    font-weight: 700;
}

@media (max-width: 640px) {
    .tippspiel {
        padding: 1rem .5rem;
    }

    .tippspiel-table th,
    .tippspiel-table td {
        padding: .45rem .45rem;
        font-size: .9rem;
    }

    .tippspiel-player {
        min-width: 130px;
    }
}

.tippspiel-profile {
    max-width: 900px;
    margin: 0 auto;
}

.tippspiel-profile-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: #fff;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.tippspiel-profile-avatar img,
.tippspiel-profile-placeholder {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    background: #eef2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.tippspiel-profile-info h2 {
    margin-top: 0;
    margin-bottom: .25rem;
}

.tippspiel-profile-meta {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.tippspiel-profile-list {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: .75rem 1.5rem;
    margin: 0;
}

.tippspiel-profile-list dt {
    font-weight: 700;
}

.tippspiel-profile-list dd {
    margin: 0;
}

@media (max-width: 700px) {
    .tippspiel-profile-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .tippspiel-profile-list {
        grid-template-columns: 1fr;
    }
}