.blt-wrapper {
    width: 100%;
    margin: 1rem 0;
    font-size: 15px;
    line-height: 1.4;
}

.blt-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .75rem;
}

.blt-title {
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
    line-height: 1.2;
}

.blt-matchday {
    white-space: nowrap;
    font-size: .9rem;
    opacity: .7;
}

.blt-table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.blt-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    border-spacing: 0;
    background: #fff;
}

.blt-table th,
.blt-table td {
    padding: .65rem .55rem;
    border-bottom: 1px solid #e5e5e5;
    text-align: center;
    vertical-align: middle;
}

.blt-table thead th {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    background: #f5f5f5;
}

.blt-table tbody tr:hover {
    background: #fafafa;
}

.blt-table .blt-pos {
    width: 42px;
    font-weight: 700;
}

.blt-table .blt-team {
    width: auto;
    text-align: left;
}

.blt-team-inner {
    display: flex;
    align-items: center;
    gap: .65rem;
    min-width: 180px;
}

.blt-crest {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex: 0 0 28px;
}

.blt-points {
    font-weight: 800;
}

.blt-zone-cl .blt-pos {
    box-shadow: inset 4px 0 0 #1f6feb;
}

.blt-zone-el .blt-pos {
    box-shadow: inset 4px 0 0 #f0a000;
}

.blt-zone-ecl .blt-pos {
    box-shadow: inset 4px 0 0 #8a63d2;
}

.blt-zone-relegation .blt-pos {
    box-shadow: inset 4px 0 0 #d33;
}

.blt-footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: .55rem;
    font-size: .75rem;
    opacity: .65;
}

.blt-error {
    padding: 1rem;
    border: 1px solid #d33;
    background: #fff5f5;
    color: #900;
}

@media (max-width: 700px) {
    .blt-wrapper {
        font-size: 14px;
    }

    .blt-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .blt-table th,
    .blt-table td {
        padding: .55rem .45rem;
    }

    .blt-footer {
        flex-direction: column;
        gap: .25rem;
    }
}
