:root{
    font-family: 'Montserrat', sans-serif;
    --accent-color: #2EFEA4;
    --blue-accent-color: #0F1446;
    --purple-accent-color: #0D0D38;
}

body{
    color: var(--blue-accent-color);
}


.mate-logo-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    
    background-color: currentColor;
    -webkit-mask-image: url('../icons/mate-logo-icon.svg');
    mask-image: url('../icons/mate-logo-icon.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
}

h1{
    color: var(--blue-accent-color);
}

a{
    color: var(--blue-accent-color);
}

a:hover{
    color: var(--blue-accent-color);
    text-decoration: underline;
}

.accent{
    color: var(--accent-color);
}

.content-statistics{
    width: 50%;
}

.btn-primary, .btn-warning, button{
    background: var(--accent-color);
    color: var(--blue-accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 20px !important;
    padding: 10px 20px 10px 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
}

.btn-primary:hover, .btn-warning:hover, button:hover{
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    text-decoration: none;
}

.btn-danger{
    padding: 10px 20px 10px 20px;
}

.motivation{

}



.module-section{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.module-section-card{
    width: 24%;
    height: 75px;
    border-radius: 5px;
    box-shadow: 1px 1px 10px 1px #474747;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    color: #fff;

    .module-section-card-headline{
        align-self: center;
        font-size: 18px;
        font-weight: 500;
        a{
            color: #fff;
            width: 50%;
            text-decoration: none;
            align-self: center;
        }
        .module-section-card-headline-content{
            display: flex;
            align-items: center;
            i, .mate-logo-icon{
                font-size: 24pt;
                margin-right: 20px;
                
            }
        }
    }

    .module-section-card-content{
        color: var(--accent-color);
        a{
            color: var(--accent-color);
            text-decoration: none;
        }
    }
}

.table img{
    border-radius: 5px;
}

.bg-dark{
    --bs-dark-rgb: 13, 13, 56;
}

.login_content{
    width: 50%;
    margin: 0 auto;
    margin-top: 200px;
    text-align: center;
    display: flex;
    background: var(--blue-accent-color);
    box-shadow: 10px 10px 20px 5px var(--purple-accent-color);
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    height: 50vh;
    font-family: 'Montserrat', sans-serif;

    .login-logo{
        width: 50%;
        align-items: center;
        border-right: 1px solid var(--accent-color);
        font-size: 150pt;
        color: var(--accent-color);
    }

    .login-card{
        width: 50%;
        border-radius: 20px;
        padding: 20px;
        color: var(--accent-color);
        align-items: center;
        form {

            a{
                color:var(--accent-color);
            }
            
            input{
                width: 75%;
                border: 1px solid var(--accent-color);
                border-radius: 20px;
                background: transparent;
                color: #fff;
                padding: 20px 10px 20px 10px;
                margin-bottom: 20px;
                font-size: 16px;
                font-weight: 700;
            }
        }
    }

}

.sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.sidebar-logo{
    font-size: 51pt;
    color: var(--accent-color);
}

.sidebar ul {
    padding-left: 0;
}

.sidebar .nav i{
    color: var(--accent-color);
    width: 30px;
}

.sidebar .nav-link {
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14pt;
}

.sidebar .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.content {
    margin-left: 250px; /* Platz für die Sidebar */
    background-color: #f9fafb;
    min-height: 100vh;

    .content-headline{
        margin-bottom: 100px;
        .content-headline-content{
            width: 80%;
            display: flex;
            justify-content: space-between;
        }
        hr{
            border: 1px solid var(--accent-color);
            opacity: 1;
        }
    }
}



.user-area{
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid var(--accent-color);
    padding-top: 20px;
    .user-area-info{
        width: 70%;
        align-self: center;

        .user-info-role{
            color: var(--accent-color);
            font-size: 10pt;
            margin-top: -15px;
            text-transform: capitalize;
        }
    }
    .user-area-actions{
        width: 30%;
        display: flex;
        text-align: center;
    }
}

.user-initials {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    align-self: center;
    border-radius: 50%;
    border: 1px solid var(--accent-color);
    background-color: var(--purple-accent-color);
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 10px;
    font-size: 14px;
}

.player-view-content{
    display: flex;
    gap: 50px;
}

.friend-content, .session-content{
    width: 40%;
    background: var(--purple-accent-color);
    color: #fff;
    border-radius: 20px;
    font-weight: 700;
    padding: 20px;

    hr{
        color: var(--accent-color);
        opacity: 1;
    }
}

.friend-card-initials{
    align-self: center;
}


.friend-card{
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    margin-top: 20px;

    .friend-card-info{
        display: flex;
    }
    .friend-card-name{
        align-self: center;
        padding-left: 20px;
        .friend-card-email{
            font-size: 12pt;
            color: var(--accent-color);
            font-weight: 300;
        }
    }

    .friend-card-action{
        align-self: center;
        border: 1px solid var(--accent-color);
        border-radius: 20px;
        width: 50px;
        text-align: center;
        padding: 5px;
    }
}

.card-btn{
    padding: 5px;
    align-self: center;
    background: transparent;
    width: 50px;
    border-radius: 20px;
    i{
        color: var(--accent-color);
    }
}

.card-btn-danger{
    color: #dc3545;
}


.card-btn-danger:hover{
    color: #dc3545;
}

.player-head-card{
    background: var(--accent-color);
    color: var(--blue-accent-color);
    border-radius: 20px;
    width: 50%;
    padding: 20px;
    margin-bottom: 50px;
}

.session-card{
    background: var(--blue-accent-color);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
    
    .session-card-info{
        display: flex;
    }

    .session-card-info-text-date-location{
        color: var(--accent-color);
        font-weight: 300;
    }
}

.game-list{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.game-card{
    background: var(--blue-accent-color);
    border-radius: 20px;
    width: 24%;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    color: #fff;
    min-height: 200px;
    .game-card-img{
        width: 141px;
        align-self: center;
        border-right: 1px solid var(--accent-color);

        .user-initials{
            width: 100px;
            height: 100px;
            font-size: 42pt;
            text-align: center;
            padding-top: 20px;
            margin-left: 20px;
        }

    }

    img{
        height: 200px;
        border-radius: 20px;
        max-width: 141px;
        object-fit: cover;
    }

    .game-card-info {
        .friend-card-email{
            color: var(--accent-color);
            font-weight: 300;
        }
    }

    .game-card-name{
        font-weight: 500;
        font-size: 16pt;
    }

    .game-card-actions{
        margin-right: 50px;
        margin-top: 20px;
        margin-bottom: 20px;
        display: flex;
        div{
            border: 1px solid var(--accent-color);
            padding: 5px;
            border-radius: 20px;
            margin-right: 10px;
            width: 50px;
            text-align: center;
        }
    }

}

.edit-form{
    width: 50%;
    background: var(--blue-accent-color);
    border-radius: 20px;
    color: #fff;
    font-size: 16pt;
    display: flex;
    gap: 20px;

    .edit-image{
        min-height: 260px;
        img{
            height: 100%;
            border-radius: 20px;
            width: 160px;
            object-fit: cover;
        }

        .placeholder-img{
            height: 100%;
            border-radius: 20px;
            width: 160px;
            background: var(--accent-color);
        }
    }

    form {
        label{
            margin-top: 20px;
        }

        .form-control{
            color: #fff;
        }

        input, input{
            background: transparent;
            border: 1px solid var(--accent-color);
            border-radius: 20px;
        }

        input:focus{
            background: transparent;
            color: #fff;
            border: 1px solid var(--accent-color);
            border-radius: 20px;
        }

        button{
            margin-top: 20px;
        }
    }

}