#main-window {
	width: 50%;
	min-height: 400px;
}

.userinfo-wrapper {
    background: #0000002e;
    border-top-left-radius: inherit;
}

.sidepanel-wrapper {
    flex: 0.3;
    background-color: white;
    border-top-left-radius: inherit;
    border-bottom-left-radius: inherit;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 10px;
}

.username {
    text-align: center;
    line-height: 40px;
    user-select: none;
}

.logout-wrapper {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 10px;
    display: flex;
    justify-content: end;
}

.main-panel-wrapper {
    padding: 20px;
    flex: 1;
	display: flex;
    flex-direction: column;
}

.input-wrapper {
    flex: 1;
    flex-direction: column;
    display: flex;
}

.heading-wrapper {
    height: 70px;
    text-align: center;
    color: white;
    font-size: 30px;
    margin-bottom: 20px;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 120px;
}

.configuration-wrapper {
    min-height: 40px;
    border-style: none none solid none;
    border-color: white;
    margin-left: 10px;
    border-width: 1.5px;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: 0.6s;
	
	display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.wrapper-text {
    color: white;
    line-height: 40px;
    font-size: 19px;
}

.expand-icon {
    height: 40px;
    width: 40px;
}

.expand-icon.expand-icon-expanded {
    transition: .2s;
    transform: rotate(180deg);
}

.configuration-header {
    display: flex;
    justify-content: space-between;
    max-height: 40px;
    user-select: none;
    cursor: pointer;
    transition: .2s;
}

.wrapper-expanded {
	flex: 1;
}

/*Content is invisible by default*/
.configuration-content {
    display: none;
    flex-direction: column;
}

.configuration-header:hover {
    background: #ffffff36;
}

.id-input-wrapper {
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
}

.match-id-label {
    color: white;
    flex: 0.2;
    min-width: 100px;
    margin-bottom: 10px;
    line-height: 30px;
}

.config-text {
    color: white;
    padding-bottom: 5px;
    padding-top: 10px;
}

#match-id-input {
    flex: 1;
}

.configuration-wrapper-expanded {
    animation-name: content-appear;
    animation-duration: .3s;
    animation-timing-function: ease-in;
}

.checkbox-wrapper {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

@keyframes content-appear {
	0% {
		opacity: 0;	
	}
	
	90% {
		opacity: 0;
	}
	
	100% {
		opacity: 1;
	}
}

@media only screen and (max-width: 500px) {
	.main-window: {
		flex-direction: column;
	}
}
