/* scoreboard-styles.css */

.espn-basketball-scoreboard {
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.event {
    border: 1px solid #ccc;
    margin-bottom: 20px;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 5px;
}

.event-header {
    text-align: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.event-header h3 {
    margin: 0;
    font-size: 18px;
}

.event-header .event-date {
    font-size: 14px;
    color: #666;
}

.teams {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
}

.team {
    display: flex;
    align-items: center;
}

.team-logo img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.team-info {
    text-align: left;
}

.team-info .team-name {
    margin: 0;
    font-weight: bold;
    font-size: 16px;
}

.team-info .team-score {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.event-footer {
    text-align: center;
    border-top: 1px solid #ccc;
    padding-top: 10px;
    margin-top: 10px;
}

.event-footer p {
    margin: 0;
}

.event-footer a {
    color: #0073aa;
    text-decoration: none;
}

.event-footer a:hover {
    text-decoration: underline;
}
/* scoreboard-styles.css */

.HeaderScoreboard__Carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 10px;
}

.HeaderScoreboard__Carousel__Nav {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #e0e0e0;
    border-radius: 50%;
}

.HeaderScoreboard__Carousel__Nav.is-disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.HeaderScoreboard__Carousel__Nav svg {
    width: 20px;
    height: 20px;
}

.HeaderScoreboard__Carousel__Wrapper {
    flex: 1;
    overflow: hidden;
    display: flex;
}

.HeaderScoreboard__Events {
    display: flex;
    transition: transform 0.7s ease;
    width: 100%;
}

.HeaderScoreboard__SportSection {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.ScoreCell {
    display: flex;
    flex-direction: column;
    margin: 0 10px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    flex: 0 0 calc(100% / 3 - 20px); /* Adjust width to show 3 events per page */
}

.ScoreCell__Link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.ScoreCell__Link__Event__Detail {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px;
}

.ScoreCell__CompetitorDetails {
    display: flex;
    flex: 1;
}

.ScoreCell__Competitors {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ScoreCell__Item {
    display: flex;
    align-items: center;
    margin: 5px 0;
}

.ScoreCell__Logo {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.ScoreCell__TeamName {
    font-size: 14px;
    font-weight: bold;
}

.ScoreCell__Overview {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.ScoreCell__ScoreDate,
.ScoreCell__Time {
    font-size: 12px;
    color: #666;
}
