.vm-rangliste {
    font-family: Arial;
    margin: 20px;
}

.vm-rangliste * {
    box-sizing: border-box;
}

/* ===== DESKTOP ===== */

.vm-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.vm-table th,
.vm-table td {
    border: 1px solid #ddd;
    padding: 10px;
    vertical-align: top;
}

.vm-table th {
    background: #6699ff;
}

.vm-name {
    font-weight: bold;
}

.vm-wertung {
/*  background: #6699ff;*/
    font-weight: bold;
}

/* ===== MOBILE ===== */

.vm-mobile {
    display: none;
}

@media (max-width: 768px) {
    .vm-table {
        display: none;
    }
    .vm-mobile {
        display: block;
    }
}

/* ===== CARDS ===== */

.score-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,.08);
}

.card-header {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.rank {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.best {
    color: #666;
}

.round {
    background: #f7f7f7;
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
}

.round-best {
    background: #f7f7f7;
    border: 1px solid #e2cf6d;
}

.round-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.series {
    color: #555;
}