#main-content {
    background-color: var(--club-rgba-20) !important;
}
.attps-match-detail-wrap {
    /* background-color: var(--attps-match-bg); */
    padding: 1px 0;
}

.match-back-btn-container {
    margin: 20px
}

.match-back-btn {
    color: var(--attps-match-accent);
    text-decoration: none;
    font-family: 'euclid-circular-a', sans-serif
}

.match-container {
    max-width: 840px;
    margin: 20px;
    padding: 20px;
    background: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    border-radius: 15px
}

.match-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px
}

.match-details h1 {
    font-size: 28px;
    margin: 0;
    color: #333
}

.match-details p {
    margin: 5px 0;
    font-size: 16px;
    color: #555
}

.match-details p i {
    color: var(--attps-match-accent);
    margin-right: 10px
}

.match-description {
    margin-top: 20px;
    line-height: 1.6
}

.match-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-block: 20px
}

.btn-edit,
.btn-delete {
    color: var(--attps-match-accent);
    cursor: pointer;
    transition: all .3s ease-in-out
}

.btn-edit:hover,
.btn-delete:hover {
    color: var(--attps-match-accent)
}

.btn-delete {
    border: none;
    background: transparent
}

@media screen and (max-width:768px) {
    .match-container {
        margin-bottom: 120px
    }
}