*{
    font-family: "Product Sans", sans-serif;
}
#container{
    border: 1px solid transparent;
    border-radius: 12px;
    background-color: #C4DFE6;
    padding: 20px;
}

#search_form{
    display: inline;
    text-align: left;
}
#search_box{
    width: 70%;
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
    line-height: 1.5;
    padding: .375rem .75rem;
    font-weight: 400;
    vertical-align: middle;
    font-size: 1rem;
    background-color: #003B46;
    background-image: url("images/search.png");
    background-position: 10px 10px;
    background-repeat: no-repeat;
    color: white;
}

#search_box::placeholder{
    color: white;
}
#search_btn{
    cursor: pointer;
    color:#fff;
    background-color:#007bff;
    border-color:#007bff;
    font-weight: 400;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid transparent;
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    background-image: url("images/search.png");
    background-position: center;
    background-size: 25px 25px;
    background-repeat: no-repeat;
    width: 45px;
}
#search_btn:hover{
    color:#fff;
    background-color:#0069d9;
    border-color:#0062cc;
}
#search_btn:focus{
    box-shadow:0 0 0 .2rem rgba(0,123,255,.5);
}
#rank_table{
    border: 1px solid transparent;
    border-radius: 12px;
    background-color: #F2F2F2;
}

#match_history{
    margin-top: 20px;
    border: 1px solid transparent;
    border-radius: 12px;
    background-color: rgb(252, 252, 252);
    padding: 20px;
}
#match{    
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;;
}
.winning{
    background-color: rgb(163, 207, 236);
    border: 2px solid rgb(65, 164, 230);
}
.losing{
    background-color: rgb(226, 182, 179);
    border: 2px solid rgb(211, 85, 76);
}
#progressbar {
    background-color: black;
    border-radius: 13px;
    /* (height of inner div) / 2 + padding */
    padding: 3px;
  }
  
  #progressbar>div {
    background-color: orange;
    /*width: 40%;*/
    /* Adjust with JavaScript */
    height: 20px;
    border-radius: 10px;
  }
  #flex_span{
    /*transition: width 1s ease-in-out;*/
    width: 2400px;
  }
  #flex_span:hover{
    width: 500px;
  }