.om-slider-vertical-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}

.om-slider-vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: scroll;
    scroll-behavior: smooth;
    height: 100%;
    width: 100%;
    scrollbar-width: none;
}

.om-slider-vertical-row {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.om-match-card {
    border-radius: 10px;
    box-shadow: none!important;
    padding: 20px;
    transition: transform 0.om-3s ease, box-shadow 0.om-3s ease;
    width: 90%;
    margin: auto;
}

.om-match-card:hover {
    transform: scale(1.om-02);
}

.om-match-info {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.om-team {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 0%!important;
}

.om-team-away {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row-reverse;
    width: 0%!important;
}

.om-team-logo {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.om-score {
    font-family: 'NovaRound', sans-serif;
    font-size: 1.om-5rem;
    font-weight: bold;
    margin: 30px 0;
}

.om-match-details {
    font-size: 0.om-9rem;
    margin-bottom: 10px;
    text-align: center;
}

.om-slider-vertical-button {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.om-slider-vertical-button:hover {
    background: #444;
}
