#statsPanel{
    display: flex;
    width: 75%;
    opacity: 1;
    justify-content: space-evenly;
    /*border-radius: 100px 100px 0 100px;*/
}
#statsPanel h3{
    margin: 0 2px;
}
.statIcon{
    width: 4em;
    filter: drop-shadow(2px 4px 6px black);
}
#mainStats{
    display: flex;
    width: 50%;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
#otherStats{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: 100%;
}
#otherStats div{
    margin: 1em;
}
#statsPanel .collapsible {
    /*background-color: white;*/
    cursor: pointer;
    /*padding: 18px;*/
    /* width: 90%; */
    border: none;
    /*text-align: left;*/
    outline: none;
    /*font-size: 15px;*/
    margin: 0 auto;
    border-radius: 100px;
}  
#statsPanel .active, .collapsible:hover {
    background-color: #55555580;
}
#visualStats{
    width:100%;
}
#visualStats .content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden !important;
    transition: max-height 0.2s ease-out;
    /*background-color: #f1f1f1;*/
    margin: 10px 0;
    width: 100%;
    overflow-y: scroll !important;
    /*overflow-x: hidden !important;*/
}
#visualStats #usedServers, #visualStats #recurrentUsers{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
}
#visualStats .server, #visualStats .user{
    margin: 20px;
    list-style: none;
    /* width: 23em; */
}
.server a{
    text-decoration: none;
}
.server:has(a[href]):active{
    transform: scale(1.05);
}
.server .card{
    background-image: linear-gradient(140deg, #EADEDB 0%, #BC70A4 50%, #BFD641 75%);
}
.server .card-body{
    padding: 0;
}
.server .card-title{
    width: 94%;
}
.server .serverStats{
    display: flex;
    justify-content: space-evenly;
    /*position: absolute;*/
    width: 77%;
}
.user img{
    width: 80%;
}
/* .user img{
    margin-bottom: 7px;
    width: 6em;
} */
#otherStats div{
    margin: 0;
}
#visualStats #graphics{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
#visualStats .graphic{  
    margin: 0 auto;
    max-height: 180px;
    max-width: 360px;
    margin: 1em;
    background: #ffffff0a;
    filter: drop-shadow(2px 4px 6px black);
    border-radius: 10px;
}

.canvas-container {
    position: relative;
} 
.canvas-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*font-size: 20px;
    font-weight: bold;
    color: white;*/
}  

#PD{
    background: #ff000047;
    padding: 0.5em;
    margin-bottom: 1em;
    border-radius: 0px 0px 100px 100px;
}

/* ASPECTO EN MÓVIL */
@media all and (max-width: 900px){
    #statsPanel > div:not(#visualStats){
        display: flex;
        justify-content: space-evenly;
        width: 100%;
    }
}