@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body, html {
	background: linear-gradient(90deg, rgba(131,67,209,1) 0%, rgba(104,50,168,1) 100%);
	font-size: 14pt;
	font-family: Montserrat;
	color: white;
	height: 99vh;
}
#main {
	height: 100%;
	display: grid;
	grid-template-columns: 1fr 9fr;
	grid-template-rows: 1fr 3fr 15fr 1fr;
	grid-template-areas: 
		"logo header"
		"logo content"
		"menu content"
		"footer footer";
}
#logo {
	grid-area: logo;
	width: 100%;
}
#logo img {
	height: 80%;
}
#header {
	grid-area: header;
	text-align: center;
}
#menu {
	grid-area: menu;
}
#menu p, .ppremdetails {
	cursor: pointer;
}
#menu p:hover {
	color: yellow;
}
#content {
	grid-area: content;
	display: block;
	background: white;
	color: black;
	padding: 1em;
}
#usersearchtext {
	margin-top: 1em;
	margin-bottom: 1em;
}
#usertable {
	width: 100%;
	text-align: left;
}
#usertable tr:nth-child(odd) {
	background: rgba(0,0,0,0.1);
}
#usertable td, .reporttable:not(.nopointer) td {
	cursor: pointer;
}
.usersearchres {
	width: 30%;
	height: 15em;
	overflow-x: auto;
}
#result {
	width: 100%;
	position: fixed;
	top: 80%;
	right: 0;
	background: rgba(0,0,0,0.4);
	color: white;
	font-size: 2.5em;
	line-height: 2.7em;
	text-align: center;
}
.editclub, .deleteclub, .reportdetailsbutton {
	cursor: pointer;
}
.formcontainer {
	display: grid;
	grid-template-columns: 10em 1fr
}
.clublabel *, .clubinput * {
	margin-top: 0.5em;
}
.editclubsubmit {
	margin-top: 1em;
}
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}
.clubtablecont, #reportresult, #content {
	height: 95%;
	overflow-y: auto;
}
.clubtable {
	width: 90%;
	margin: auto;
	box-sizing: border-box;
	border-collapse: collapse;
}
.clubtable th {
	text-align: left;
	padding: 0.2em 1em;
}
.clubtable tr:nth-child(odd) {
	background: rgba(0,0,0,0.1);
}
.clubtable td {
	padding: 0.2em 1em;
}
.regloading {
	position: fixed;
	top: 0;
	left: 0;
	display: grid;
	grid-template-columns: 100dvw;
	grid-template-rows: 100dvh;
	place-items: center;
	background: rgba(128,128,128,0.5);
}

#studenttype, #club, #clubtype,.datefrom, .dateto, #studentyear, #studentform, #singlestudent, .displaynone {
	display: none;
}
#singlestudent {
	width: 20em;
	color: grey;
}
#reportform * {
	margin-right: 1em;
	margin-bottom: 0.5em;
}
.dateto, .datefrom {
	font-size: 0.8em
}
.red {
	color: red;
}
.twocolumn {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.threecolumn {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}
.reporttable {
	width: 95%;
	text-align: left;
	margin:auto;

}
.reporttable td, .reporttable th {
	font-size: 0.8em;
	padding: 0.5em 0.5em;
}
.reporttable tr:nth-child(odd) {
	background: rgba(0,0,0,0.1);
}
.subtitle {
	margin: 0;
	font-size: 0.8em;
	font-style: italic;
	text-decoration: underline;
}
.subtitle:before {
	content: '\A';
	white-space: pre;
}
.ppcenter {
	width: 8em;
	text-align: center;
}
.hfrom {
	margin: 0 !important;
}
.nogapbottom {
	margin-bottom: 0;
}
.gaptop {
	margin-top: 1.5em;
}
.contentimgs {
	width: 90%;
	display:grid;
	grid-template-columns: repeat(6, 1fr);
	grid-column-gap: 2em;
	grid-row-gap: 2em
}
.contentimgs img {
	object-fit: contain;
	width: 100%;
	filter: drop-shadow(5px 5px 10px grey)
}
.error {
	background: #fcc6bb;
	border: red 1px solid;
}
.errormsg {
	color:red;
}
