/* Estilos para os cards */
.ffg-player-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
    background: #fff;
}

.ffg-player-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.ffg-player-image {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.ffg-player-details {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

.ffg-stats-list {
    columns: 2;
    list-style: none;
    padding: 0;
}

.ffg-stats-list li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.stat-label {
    font-weight: bold;
    margin-right: 10px;
}

/* Estilos para times */
.ffg-team-profile {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.ffg-team-logo {
    max-width: 200px;
    height: auto;
}

.ffg-team-roster {
    columns: 2;
    list-style: none;
    padding: 0;
}

.ffg-player {
    border: 1px solid #ddd;
    padding: 15px;
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ffg-buy-btn, .ffg-sell-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.ffg-buy-btn {
    background: #28a745;
    color: white;
}

.ffg-sell-btn {
    background: #dc3545;
    color: white;
}

.ffg-buy-btn:hover { background: #218838; }
.ffg-sell-btn:hover { background: #c82333; }

.player-value {
    color: #666;
    font-size: 0.9em;
}

.ffg-alert {
    color: #856404;
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 15px;
    border-radius: 4px;
}

