body { 
    background-image: url("assets/sprites/background_mobile.jpg");
    color:#ffffff;
    font-family: "Aldrich", sans-serif; /*Aldrich is a google font */
    /*font-family: Arial, Helvetica, sans-serif;*/
}

h1 {
    font-size: 48px;
}

input[type=text],
input[type=password] {
    font-family: "Aldrich", sans-serif;
    width: 50%;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    background-image: url('assets/sprites/bobo_small.jpg');
    background-position: 10px 10px; 
    background-repeat: no-repeat;
    padding: 12px 20px 12px 40px;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
}

input[type=text]:focus {
    width: 70%;
}
input[type=password]:focus {
    width: 70%;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
    font-family: "Aldrich", sans-serif;
    background-color: #ffffff; 
    border: none;
    border-radius: 4px;
    color: black;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: green;
    color: white;
    text-align: center;
}

.header {
    background-color: black;
    margin-bottom: 30px;
    color: #de77ae;
}

.userlist {
    background-color: black;
    border-radius: 4px;
    width: 400px;
    margin: 10px;
    padding: 5px;
    color: white;
    font-size: 18px;
    background: rgba(0, 0, 0, 0.3);
}
.myButton input {
    font-family: "Aldrich", sans-serif;
    font-size: 18px;
    background:url('assets/sprites/1x1_destroy.png') no-repeat;
    cursor:pointer;
    border: none;
    background-size: 100% 100%;
    width: 50px;
    height: 50px;
    float: left;
}	

.myButtonUnbreakable input {
    font-family: "Aldrich", sans-serif;
    color: #000000;
    cursor:pointer;
    border: none;
    background-size: 100% 100%;
    width: 150px;
    height: 50px;
    display: inline;
}

.kickButton input {
    color: #000000;
    cursor:pointer;
    margin-right: 5px;
    border: none;
    background-size: 100% 100%;
    width: 80px;
    height: 20px;
    float:left;
}	


/* The container */
.container {
    display: block;
    position: relative;
    padding-left: 35px;
    padding-right: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 14px;
    font-family: "Open Sans", sans-serif; /* Open Sans is a google font */
    background-color: rgba(201, 178, 240, 0.2);
    border-radius: 4px;
    border-color: rgba(0, 140, 255, 0.1);
    border-style: groove;
    border-width: medium;
    width: 70%;
    text-align: left;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 5px;
    left: 5px;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
    /*
    background-color: green;
    */
    background-color:rgba(0, 140, 255, 0.5);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
 	top: 6px;
	left: 6px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

/* Style question box */
.question {
    color: white;
    margin: auto;
    width: fit-content;
    padding: 10px 10px 200px;
    border-radius: 4px;
    background-color: rgba(201, 178, 240, 0.1);
    border-color: rgba(0, 140, 255, 0.1);
    border-style: groove;
    border-width: thick;
    text-align: center;
}

/* Highlight session code and url information at start page */
.startbox {
    color:#ffffff;
    border:dotted;
    width:fit-content;
    padding:10px;
    line-height:1.4;
    overflow-wrap: anywhere;
}

