.fk-bud-player-card {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    max-width: 600px;
    margin: 20px auto;
    background-color: #f9f9f9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.player-photo {
    flex: 1;
    max-width: 200px;
}

.player-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.player-details {
    flex: 2;
    padding: 20px;
}

.player-name {
    margin-top: 0;
    font-size: 24px;
    color: #333;
}

.player-info {
    margin: 10px 0;
    font-size: 16px;
    color: #555;
}

.player-info strong {
    color: #000;
}

.player-stats-container {
    font-family: Arial, sans-serif;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-button {
    background-color: #f0f0f0;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.tab-button:hover {
    background-color: #ddd;
}

.tab-button.active {
    background-color: #003b5c;
    color: #fff;
}

.tab-content {
    border-top: 2px solid #003b5c;
    padding-top: 20px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.stats-section {
    margin-bottom: 20px;
}

.stats-section h3 {
    font-size: 1.2em;
    color: #003b5c;
    margin-bottom: 10px;
}

.stats-section p {
    font-size: 1em;
    color: #333;
    margin: 5px 0;
}