.lfls-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

/* Standings wrapper */
.lfls-standings-wrapper {
    /*max-height: 50vh;*/
    overflow-y: auto;
}

/* Live scores wrapper */
.lfls-live-wrapper {
    max-height: 60vh;
    overflow-y: auto;
}

/* Standings table */
.lfls-standings-table {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 12px;
}

.lfls-standings-row {
    display: grid;
    grid-template-columns: 15px 1fr 15px 40px 20px;
    align-items: center;
    padding: 6px 10px;
    border-bottom: 1px solid #eee;
}

.lfls-standings-header {
    background: #0073aa;
    color: #fff;
    font-weight: bold;
}

.lfls-standings-row img.lfls-logo {
    height: 18px;
    width: 18px;
    margin-right: 3px;
    vertical-align: middle;
}

/* Standings row default */
.lfls-standings-row {
    display: grid;
    grid-template-columns: 40px 1fr 50px 80px 50px;
    align-items: center;
    padding: 6px 10px;
    border-bottom: 1px solid #eee;
    font-weight: normal;
}

/* Champions League positions */
.lfls-standings-row.lfls-cl {
    background-color: #d4edda;  /* light green */
    color: #155724;
    font-weight: bolder;
}

/* Europa League positions */
.lfls-standings-row.lfls-el {
    background-color: #fff3cd;  /* light yellow/orange */
    color: #856404;
    font-weight: 600;
}

/* Relegation positions */
.lfls-standings-row.lfls-rel {
    background-color: #f8d7da;  /* light red */
    color: #721c24;
    font-weight: bold;
}

.lfls-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 8px 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    font-family: Arial, sans-serif;
}

/* Header */
.lfls-header {
    display: flex;
    justify-content: space-around;
    font-size: 11px;
    margin-bottom: 6px;
}
.lfls-time { color: #555; }
.lfls-status { font-weight: bold; }

/* Status colors */
.lfls-live { color: #e60000; }
.lfls-finished { color: #333; }
.lfls-scheduled { color: #888; }

/* Body layout */
.lfls-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lfls-team {
    display: flex;
    align-items: center;
    width: 45%;
    align-content: space-around;
    justify-content: center;
}
.lfls-logo {
    width: 20px;
    height: 20px;
    margin-right: 6px;
}
.lfls-name {
    font-size: 11px;
}

/* Score */
.lfls-score {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    width: 10%;
}