.fm-public-wrapper {
    width: 100%;
    margin: 20px 0;
    font-family: inherit;
}

.fm-table-public {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.fm-table-public th {
    background: #f1f3f4;
    padding: 12px;
    text-align: left;
    font-weight: 700;
}

.fm-table-public td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.fm-table-public tr:last-child td {
    border-bottom: none;
}

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

.fm-team-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.fm-pos {
    width: 30px;
    font-weight: 700;
    color: #5f6368;
}

.fm-points {
    font-weight: 700;
    color: #1a73e8;
}

/* Dashboard Frontend Styles */
.fm-dashboard-frontend {
    font-family: 'Inter', sans-serif;
    color: #202124;
}

.fm-dashboard-frontend .fm-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.fm-dashboard-frontend .fm-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.fm-dashboard-frontend .fm-stat-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
}

.fm-dashboard-frontend .fm-stat-card .label {
    display: block;
    font-size: 13px;
    color: #5f6368;
    margin-bottom: 5px;
}

.fm-dashboard-frontend .fm-stat-card .value {
    font-size: 22px;
    font-weight: 700;
    color: #1a73e8;
}

.fm-dashboard-frontend .fm-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .fm-dashboard-frontend .fm-content-grid {
        grid-template-columns: 1fr;
    }
}

.fm-dashboard-frontend .fm-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}

.fm-dashboard-frontend .fm-card h3 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.fm-list-stats {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fm-list-stats li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f8f9fa;
}

.fm-list-stats li:last-child {
    border-bottom: none;
}
