@import url('../../styles.css'); /* import main styles */

/* Main container */
.background {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;

    width: 100%;
    max-width: 500px;
    height:fit-content;
    max-height: 80vh;

    
    border: 2px solid rgba(255, 255, 255, 0.692);
    border-radius: 25px;
    
    background: transparent;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.507);

    padding: 50px;
}

.user-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: transparent;
    border-radius: 8px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.507);
    box-sizing: border-box;
    margin-bottom: 25px;
}

.userInfo-container {
    display: flex;
    flex-direction: column;
    justify-content:flex-start;
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.507);
    box-sizing: border-box;
    line-height: 0em;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 15px;

}
.userStats-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    line-height: 0em;
    width: 100%;
    height:fit-content;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px); 
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.507);
    box-sizing: border-box;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 15px;

}

.recentGames-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    border: 2px solid rgba(255, 255, 255, 0.692);
    border-radius: 8px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.507);
    box-sizing: border-box;
    padding: 25px;
    background: rgba(0, 0, 0, 0.5);
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

/* Title of Recent Games */
.bottom-container .title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

/* Styling for each game row */
.game-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.deleteUserButton:hover {
    background-color:  rgb(199, 0, 0) !important;
    border: none !important;
}

.titleContainer {
    width: 100%;
}