<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* === Benin Foot League â€“ Frontend Styles === */
.bfl-table {
    display: flex;
    flex-direction: column;
    border: 2px solid #000;
    border-radius: 10px;
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
    font-size: 15px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    margin: 20px 0;
}

.bfl-row {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #ddd;
}

.bfl-row:last-child {
    border-bottom: none;
}

.bfl-header {
    background: linear-gradient(90deg, red, orange);
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

.bfl-cell {
    flex: 1;
    padding: 12px;
    text-align: center;
    min-width: 100px;
    color: #000;
    border-right: 1px solid #eee;
}

.bfl-cell:last-child {
    border-right: none;
}

.bfl-live {
    background-color: red;
    color: #fff;
    padding: 3px 6px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
}

.bfl-empty {
    padding: 15px;
    background: #ffe9e9;
    border: 1px solid red;
    color: red;
    border-radius: 6px;
    text-align: center;
    margin: 10px 0;
}

.bfl-highlight {
    background-color: #e0ffe0;
    font-weight: bold;
    color: green;
}

.bfl-archive {
    background: #000;
    color: #fff;
    font-size: 14px;
    padding: 8px;
    margin-top: 10px;
    border-radius: 6px;
    font-style: italic;
}

.bfl-score {
    font-weight: bold;
    font-size: 16px;
    color: orange;
}

/* Responsive */
@media (max-width: 768px) {
    .bfl-cell {
        font-size: 14px;
        padding: 8px;
    }
}
</pre></body></html>