.fpe-match-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 15px;
    font-family: sans-serif;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.fpe-match-header {
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    background-color: #f7f7f7;
    padding: 10px;
    margin: -15px -15px 15px -15px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.fpe-match-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fpe-team {
    text-align: center;
    flex: 1;
    font-weight: bold;
}

.fpe-team img {
    max-width: 60px;
    height: auto;
    margin-bottom: 5px;
}

.fpe-details {
    text-align: center;
    flex: 2;
}

.fpe-details p {
    margin: 5px 0;
}

.fpe-view-prediction {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
}