#algs-to-practice
{
	display: flex;
    flex-wrap: wrap;
}

.darkmode .catstopractice
{
	background-color: #333;
}

.catstopractice
{
	background-color: #e5e5e5;
    padding: 5px 10px;
	margin: 5px;
    border-radius: 5px;
}

.algtopracticeopt
{
    margin: 3px 3px;
    border-radius: 5px;
	cursor: pointer;
	border: 1px inset transparent;
    text-align: center;
    padding: 0px 3px;
	max-width: 100px;
	overflow: hidden;
}

input:checked + .algtopracticeopt
{
	border: 1px inset #ccc;
}

.darkmode input:checked + .algtopracticeopt
{
	border: 1px inset #aaa;
}

.settopractice
{
	width: 100%;
    padding: 5px;
    border-bottom: 1px solid;
}

#trainer-selectors
{
	display: inline-block;
}

.trainer-scramble
{
	text-align: center;
	flex-direction: column;
    flex: 1;
}

#stopwatch-display
{
	font-family: 'Fugaz One', cursive;
    font-size: 100px;
    text-align: center;
	transition: color 1s;
}

#stopwatch-display.pressed
{
	color: #F22;
}

#stopwatch-display-overlay.active #stopwatch-display
{
	 position: absolute;
     top: 40%;
     left: 25%;
     text-align: center;           
     width: 50%;
     z-index: 10;
}

#stopwatch-display-overlay.active
{
  height: 100%;
  width: 100%;
  position: fixed; 
  z-index: 99999; 
  left: 0;
  top: 0;
  background-color: white; 
  overflow-x: hidden; 
  transition: 0.5s;
}

.darkmode #stopwatch-display-overlay.active
{
	background-color: black;
}



#practice-alg
{
	margin: 1rem;
    font-size: 30px;
    text-align: center;
    flex: 1;
}

#practice-alg button,
#practice-alg a
{
	font-size: 14px;
}

#practice-alg-div
{
	display: flex;
	flex-direction: column;
}

#trainer-alg-practice
{
	display: none;
}

.stopwatch-result
{
	border: 1px outset #222;
    background-color: #eee;
    border-radius: 10px;
    padding: 0px 10px;
    margin: 3px;
    cursor: pointer;
	transition: all 0.5s;
}

.darkmode .stopwatch-result
{
	border-color: #111;
	background-color: #000;
}

.stopwatch-result:hover
{
	background-color: #fff;
}

.darkmode .stopwatch-result:hover
{
	background-color: #111;
}

.stopwatch-result.active
{
	background-color: #ccc;
}
.darkmode .stopwatch-result.active
{
	background-color: #222;
}

#solve-history
{
	display: flex;
    flex-flow: wrap;
	max-height: 200px;
	overflow-y: auto;
}

.statistics-header
{
	border-bottom: 1px solid #555;
    margin-bottom: 5px;
    padding-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.statistics-panel
{    
	padding: 10px;
    margin: 5px 0px;
    background-color: #eee;
	border-radius: 5px;
}


.darkmode .statistics-panel
{
	background-color: #111;
}

#traincategory-dropdown
{
	min-width: 150px;
}