/* Match Preview Mobile Fix */
.vs-match-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #000;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    width: 100%;
}

.team-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.vs-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

@media (max-width: 767px) {
    .vs-match-box {
        flex-direction: row !important;
        padding: 15px !important;
        gap: 10px;
        height: auto !important;
        min-height: auto !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 10px 0 !important;
    }

    .team-section {
        flex: 1;
        min-width: 0;
        justify-content: space-between;
    }

    .team-name {
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .vs-section {
        padding: 0 10px !important;
        flex-shrink: 0;
    }

    .match-time {
        font-size: 18px;
        font-weight: bold;
    }

    .match-date,
    .match-venue {
        font-size: 12px;
    }

    .vs-team img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        position: relative !important;
        margin: 0 !important;
        display: block !important;
    }
    
    /* Additional fixes */
    .vs-team-wrapper,
    .vs-match-box,
    .match-preview-section {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }
    
    /* Match details responsive layout */
    .match-details {
        margin-top: 20px;
        padding: 15px;
    }

    .match-info {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}
