.fantasy-teams-wrapper {
    max-width: 350px; /* Limit width */
    margin: 0 auto; /* Center align */
    background: #008000; /* Glossy green */
    padding: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.fantasy-team {
    margin-bottom: 20px;
    padding: 10px;
    background: url("https://myfinal11.in/wp-content/uploads/2024/12/Cricket-Pitch-Avatar-Myfinal11.webp") no-repeat center;
    background-size: cover;
    border-radius: 10px;
}

.fantasy-role-section {
    margin-bottom: 15px;
    text-align: center;
}

.fantasy-role-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

.fantasy-players {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.fantasy-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5px;
    text-align: center;
}

.player-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.player-details {
    margin-top: 5px;
    font-size: 14px;
    color: #fff;
}

.player-details span {
    display: block;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fantasy-teams-wrapper {
        max-width: 100%;
        padding: 15px;
    }

    .fantasy-player {
        margin: 8px;
    }

    .player-avatar img {
        width: 40px;
        height: 40px;
    }

    .player-details {
        font-size: 12px;
    }
}


.fantasy-team .tabs {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.fantasy-team .tab-list {
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 2px solid #ddd;
}

.fantasy-team .tab-list .tab {
    padding: 10px 20px;
    cursor: pointer;
    border: 1px solid #ddd;
    border-bottom: none;
    background-color: #f9f9f9;
    font-weight: bold;
}

.fantasy-team .tab-list .tab.active {
    background-color: #fff;
    border-bottom: 2px solid #fff;
}

.fantasy-team .tab-content {
    display: none;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #fff;
}

.fantasy-team .tab-content.active {
    display: block;
}
