
.match-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 9999;
}

.match-panel.open {
    right: 0;
}

.match-panel-content {
    padding: 35px;
    height: 100%;
    overflow-y: auto;
}

.close-panel {
    position: absolute;
    top: 10px;
    left: 10px;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

#matchPanelContent {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}


/* NO MATCH */
#no-match {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    width: 100%;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
    padding: 40px 20px;
}


#no-match img {
    max-width: 200px;
    margin-bottom: 30px;
}

#no-match h2 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #111;
}

#no-match p {
    font-size: 14px;
    color: #777;
}

/* FIN NO MATCH */