* {
    box-sizing: border-box;
	-webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */	
	-ms-overflow-style: none;
	scrollbar-width: none;
}	
*::-webkit-scrollbar {
		display: none;
}

* {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
	
body {
    font-family: Courier Prime, monospace;
    font-size: 20px;
    padding:0;
    margin:0;
    width: 100vw;
	cursor: default;
	touch-action: manipulation;
}

#log {
	margin-top: 10vh;
    font-family: Courier Prime, monospace;
    font-size: 25px;
    padding:0;	
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;	
}

.menu {
	position: fixed;
	bottom: 0;
	left: 0;
    font-family: Courier Prime, monospace;
    font-size: 25px;
    padding-top: 5px;	
    padding-bottom: 5px;	
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100vw;
	background-color: white;
}

.records {
    font-family: Courier Prime, monospace;
    font-size: 15px;
    padding-top: 5px;	
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;	
}
.record {
	padding: 5px;
    font-family: Courier Prime, monospace;
    font-size: 15px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100vw;
	border-top: solid black 1px;
	cursor: pointer;
}
.first {
	border-top: none !important;
}

.edatetime, .etype, .eminutes, .edifficulty, .eperformance, .esatisfaction, .enote {
	padding: 5px;
    font-family: Courier Prime, monospace;
    font-size: 20px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	width: 100vw;
	cursor: default;
}

.btn {
	border-bottom: solid black 1px;
}

.edit {
    font-family: Courier Prime, monospace;
    font-size: 20px;
    padding:0;	
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;	
}

.label {
	width: 200px;
	padding: 2px 3px 0px 3px;
	margin: 0px 5px 0 5px;
	text-align: center;
	background-color: whitesmoke;
}
.val {
	text-align: center;
	padding: 2px 3px 0px 3px;
	margin: 0px 5px 0 5px;
	width: 80px;
	margin: 0 5px 0 5px;
}

.ws {
	background-color: whitesmoke;
}

.cp {
	cursor: pointer;
}

.wm {
	width: 95%;
    font-family: Courier Prime, monospace;
    font-size: 20px;	
}

.rad {
	display: flex-item;
	margin: 5px;
	padding: 2px 3px 0 3px;
	width: 20%;
	height: 26px;
	text-align: center;
	border-radius: 13px; 
	cursor: pointer;
}

.datetime {
	margin: 0 3px 0 3px;
	padding: 3px 3px 0 3px;
	width: 70px;
	background-color: blanchedalmond;
	height: 22px;
	text-align: center;
}
.dayw, .month {
	font-size: 11px;
}
.day {
	font-size: 17px;
}

.minutes {
	margin: 0 3px 0 3px;
	width: 50px;
	font-size: 17px;
	padding: 3px 3px 0 3px;
	text-align: center;
	height: 22px;
}

.difficulty {
	margin: 0 3px 0 3px;
	padding: 3px 3px 0 3px;
	width: 40px;	
	font-size: 17px;
	text-align: center;
	height: 22px;
	vertical-align: bottom;
	background-color: lightgray;
}

.performance, .satisfaction {
	margin: 0 3px 0 3px;
	padding: 3px 3px 0 3px;
	width: 40px;	
	font-size: 17px;
	text-align: center;
	height: 22px;
	vertical-align: bottom;
}

.note {
	margin: 0 3px 0 3px;
	width: 70px;
	display: flex-item;
	font-size: 14px;
	padding: 3px 3px 0 3px;
	text-align: left;
	height: 22px;
	background-color: whitesmoke;
}
input {
	font-family: Courier Prime, monospace;
	font-size: 25px;
	padding: 5px;
	width: 50vw;
	margin: 5px;
	border: solid black 2px;
	border-radius: 10px;
	text-align: center;
}

.but {
	font-family: Courier Prime, monospace;
	font-size: 25px;
	padding: 5px;
	min-width: 30vw;
	margin: 5px;
	border: none;
	border-radius: 10px;
	text-align: center;
	cursor: pointer;
}

.but2 {
	font-family: Courier Prime, monospace;
	font-size: 30px;
	
	padding: 5px;
	width: 40px;
	margin: 5px;
	border: none;
	height: 40px;
	border-radius: 20px;
	text-align: center;
	cursor: pointer;
}

.conf {
	background-color: lightgreen;
}
.canc {
	background-color: tomato;
}

input:focus, select:focus {
	outline: none;
}

select { 
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.hid {
	visibility: hidden !important;
}

	





