/* Tabelle Page Specific Styles */
.col-pos {
    width: 50px;
    text-align: center;
}

.col-team {
    min-width: 200px;
}

.col-stat {
    width: 50px;
    text-align: center;
}

.col-points {
    width: 60px;
    text-align: center;
}

.team-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* League Position Indicators */
tr.champions-league {
    border-left: 3px solid var(--color-cl);
}

tr.europa-league {
    border-left: 3px solid var(--color-el);
}

tr.conference-league {
    border-left: 3px solid var(--color-ecl);
}

tr.relegation {
    border-left: 3px solid var(--color-relegation);
}

tr.relegation-playoff {
    border-left: 3px solid var(--color-playoff);
}

/* Form Guide */
.col-form {
    width: 100px;
    text-align: center;
}

.form-guide {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.form-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.form-dot.w {
    background: #22c55e;  /* Win - green */
}

.form-dot.d {
    background: #eab308;  /* Draw - yellow */
}

.form-dot.l {
    background: #ef4444;  /* Loss - red */
}
