
#carousel-space {
    width: 100%;
    background: var(--color-light-2);
    padding: 4px;
    background-color: #bfc0c3;
    border-bottom: 3px solid #474854;
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0;
}

.carousel-container {
    position: relative;
    width: 20%;
    min-width: 400px;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #5b5d65;
    color: white;
}
#coming {
    background: var(--color-dark-1);
    text-align: center;
}
.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}
.carousel-item {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5px 50px;
}
.match-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.team-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.team-carousel img {
    width: 60px;
    height: 40px;
    margin-bottom: 5px;
    border: 1px solid white;
    border-radius: 5px;
}
.odds {
    font-size: 12px;
}
.odds th {
    background: var(--color-dark-2);
    width: 45px;
}
.odds td {
    background: var(--color-light-1);
    padding: 1px 4px;
    color: var(--color-dark-1);
}

.odds>table {
    width:100%;
}
.kickoff-time {
    margin-top: 8px;
    font-size: 10px;
}
.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}
.carousel-controls button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.carousel-controls button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

#prevBtn {
    margin-left: 10px;
}

#nextBtn {
    margin-right: 10px;
}

.bc-carousel {
    color: white;
    padding: 2px;
    margin: 2px 0px;
    border: none;
    background: none;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    z-index: 1;
}

.bc-carousel>option{
    color: black;
}

@media screen and (max-width: 450px){
    .carousel-container {
        min-width: 300px;
    }
}