.match_container {
    padding: 30px 15px;
    background-color: #044f3b;
}
#scheduleTabsContent {
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    padding: 15px 20px;
    border: 1px solid #06916c;
    border-radius: 20px;
    background: #0a7055;
    backdrop-filter: blur(1px);
}
#upcomingMatches {
    padding: 10px;
}
.lichthidau {
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 50px;
}
/********** MATCH CARD **********/
.match-card {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
    background: #fff;
}
.match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.match-header {
    background: #f8f9fa;
    padding: 10px 15px;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.league-info {
    display: flex;
    align-items: center;
}
.league-info span {
    white-space: nowrap;
}
.league-flag {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    object-fit: contain;
}
.team-flag {
    width: auto;
    height: 40px;
    object-fit: contain;
    margin: 0 auto 10px;
    display: block;
}
.match-time {
    background: #e9ecef;
    padding: 8px;
    border-radius: 4px;
    font-weight: bold;
}
.teams-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
}
.team {
    text-align: center;
    width: 40%;
}
.c_middle {
    text-align: center;
    color: #6c757d;
}
.c_middle span {
    white-space: nowrap;
}
.c_middle .vs {
    display: block;
    font-weight: bold;
    font-size: 20px;
    margin-top: 5px;
}

.status-badge {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    color: white;
}
.status-scheduled {
    background-color: #007bff;
}
.status-live {
    background-color: #dc3545;
}
.status-completed {
    background-color: #28a745;
}
.edit_delete {
    font-size: 18px;
    display: flex;
}
.edit_delete button {
    display: block;
    text-align: center;
    padding-top: 2px;
    cursor: pointer;
    color: #e20000;
    font-weight: bold;
    border: 1px solid rgba(0, 0, 0, 0.15);
}
.edit_delete form:nth-child(1) span {
    display: block;
    transform: rotateZ(90deg);
}
.edit_delete form:nth-of-type(2) button {
    color: #ff0800;
    margin-left: 10px;
}
.match_link {
    display: block;
    padding: 5px 15px;
    border-radius: 40px;
    background: #ffe600;
    margin: 0 auto;
    text-decoration: none;
    color: #333;
}

.bet_ratio {
    display: flex;
    justify-content: center;
    padding: 0 10px;
}
.bet_ratio span {
    display: block;
    background-color: #ab0000;
    padding: 3px 0;
    color: white;
    font-weight: 600;
    min-width: 40px;
}
.bet_ratio span:first-child {
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
}
.bet_ratio span:nth-child(2) {
    background-color: #00883b;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
}
/* Hide content for slider implementation */
.slider-content {
    display: none;
}

#msg_success {
    width: 100%;
    text-align: right;
    color: #00c431;
}
#msg_error {
    width: 100%;
    text-align: right;
    color: red;
}

.owl-carousel.owl-drag .owl-item {
    padding: 5px 0;
}
.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 31%;
    left: -15px;
    font-size: 46px;
    color: #ffffff;
    outline: none;
}

.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 31%;
    right: -15px;
    font-size: 46px;
    color: #ffffff;
    outline: none;
}
.owl-carousel .owl-nav button.owl-prev.disabled,
.owl-carousel .owl-nav button.owl-next.disabled {
    opacity: 0.5;
}
