/* Estilos para o pop-up */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.popup.hidden {
    opacity: 0;
    pointer-events: none;
}

.popup-content {
    background-color: #1f4068;
    overflow-y: auto;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 60%;
    height: 50%;
    max-height: 60%;
    max-width: 600px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #e43f5a;
    font-size: 24px;
    cursor: pointer;
}

h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #e43f5a;
}

/* Tabela estilizada dentro do pop-up */
#jogadorDetalhesTable {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

#jogadorDetalhesTable th, #jogadorDetalhesTable td {
    border: 1px solid #e43f5a;
    padding: 8px 12px;
    text-align: left;
}

#jogadorDetalhesTable th {
    background-color: #1f4068;
    color: #e43f5a;
    font-size: 16px;
}

#jogadorDetalhesTable td {
    background-color: #162447;
    color: #f5f5f5;
}

/* Botão de fechar pop-up */
.close-btn:hover {
    color: #f00;
}

@media only screen and (max-width: 600px){
    .popup-content {
        width: 90%;
        
    }
}
