/* master.css
 * DO NOT EDIT THIS CSS FILE
 * Make modifications in styles.css
 *
 * last edit 2022 03 01
 **/

/*	full page setup 	*/
body {
	background-color: #f5f5f5;
	font-family: arial;
	margin: 0px; 
	padding: 0px; 
	margin-bottom: 100px;	/* must match footer height */
}
html {  
	margin: 0px; 
	padding: 0px; 
}

/*	page: the white box within which news/posts and pages are displayed 	*/
.page {
	display: block; 
	width: calc(100% - 80px); 
	border-radius: 10px; 
	background-color: #FFFFFF; 
	padding: 20px;
        border: 1px solid #D8D6D6;
        font-family: 'Quicksand', sans-serif;
}

.pagelastedit {
	font-size: 14px; 
	color: #707070; 
	font-style: italic; 
	margin-bottom: 30px;
}
.pagetitle {
	padding-bottom: 10px;
}

/*	News and Updates POST styling */
.postsheading {
	font-family: 'Quicksand', sans-serif; 
	font-size: 32px; 
	font-weight: 500; 
	padding: 0 0 40px 0;
}

.postavatar {
	height: 36px; 
	float: left; 
	vertical-align: middle;
}
.postuser {
	font-weight: bold;
}
.postdate {
	font-size: 14px; 
	color: #707070;
}
.posttitle {
	font-weight: bold;
	font-size: 20px;
}
.postcommentslink
{
        font-size: 12px;
}
.postcontent {
	padding-bottom: 20px;
}

/*	a file container for forms and file management displays 	*/
.fileitem {
	display: inline-block; vertical-align: top; height: 40px;  cursor: pointer; text-align: left;
	width: 300px;
	margin-bottom: 8px;
	border-radius: 8px;
	padding: 5px;
	transition: 0.3s;

}
.fileitem:hover {
	background-color: #D0D0FF;
}

/*	Dashboard Tile 	*/
.dashtile {
	width: calc(20% - 100px);
        min-width: 300px;
        position: relative;
	border: 1px solid #D8D6D6;
	border-radius: 8px;
	background-color: #FFFFFF;
	color: #404040;
	display: inline-block;
	text-align: center;
	vertical-align: top;
	padding: 35px;
	margin: 10px;
	cursor: pointer;
	font-family: 'Quicksand', sans-serif;
	font-size: 32px;
	font-weight: 500;
	transition: 0.3s;
}

.dashtile:hover {
    background-color: #F8D032;
    transition: 0.3s;
}

.dashtile .img { 
	height: 120px; 
	display: block; 
	vertical-align: middle; 
}
.dashtile .title { 
	height: 48px; 
	display: block; 
	vertical-align: bottom;
	margin-bottom: 28px; 
}

/*	left-side dashboard container	 */
#minidash {
	width: 230px;
	float: left;
	padding: 30px 20px 20px 20px;
	margin-bottom: 130px;	/* THIS MUST MATCH FOOTER HEIGHT */
}

/*	content left-side padding to make room for the minidash 	*/
#dashbody {
	margin-left: 280px;
	padding: 40px;
}

/*	tiles on the left-side mini dash 	*/
.dashtilemini {
	display: block;
	width: 230px;
	height: 48px;
	cursor: pointer;
	border-radius:12px;
	padding: 8px;
	margin: 10px auto;
	transition: 0.3s;
}

.dashtilemini .img { 
	height: 48px; 
	width: 48px; 
	text-align: center; 
	display: inline-block; 
	vertical-align: middle; 
}

.dashtilemini .img > img { 
	height: 30px; 
	padding-top: 8px; 
}

.dashtilemini .title {
	display: inline-block; 
	vertical-align: middle; 
	padding-left: 10px;
        font-family: 'Quicksand', sans-serif;
        font-weight: 500;
        vertical-align: middle;
        font-size: 16px;
}

/*	hover on mini dash items, and active mini dash item */
.dashtilemini:hover {
	background-color: #F8D032;
	transition: 0.3s;
}

.dashyellow {
	background-color: #F8D032; 
}

/*	 login page full-screen background 	*/
.loginbg{
	display: block;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0px;
	left: 0px;
	background: url("/assets/water1.jpg"), #000000;
	background-size: cover;
	background-repeat: none;
	z-index: 100;
}

/*	header and footer on login page 	*/
.loginlogo, .loginfooter
{
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 340px;
	color: #ffffff;
	text-align: center;	
	height: 20vh;
	padding-top: 40px;
}

.loginfooter
{
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
}

/*	login prompt on login page 	*/
.loginbox
{
	vertical-align: middle;
	position: absolute;
	height: 260px;
	top: calc(50% - 110px);
	left: 0px;
	right: 0px;
	line-height: 1.5em;
	display: block;
	margin-left: auto;
	margin-right: auto;
	background-color: #FFFFFF;
	border-radius: 20px;
	padding: 10px;	
	width: 340px;
	text-align: left;
}

.loginbox input {
	border: 0px;
	background-color: #F5F5F5;
	color: #000000;
	padding: 5px;
}

/*	universal style for buttons 	*/
.button
{
	background-color: #333333;
	width: 150px;
        padding: 8px 15px;
        border-radius: 10px;
        color: #ffffff;
        transition: 0.3s;
	cursor: pointer;
}
.button:hover {
	background-color: #FF361D;
	color: #ffffff;
	transition: 0.3s;
}

/*	red button for file manager Delete 	*/
.delbutton
{
        width: 150px;
        padding: 8px 15px;
        border-radius: 10px;
        color: #ffffff;
        transition: 0.3s;
        background-color: #d00000 !important;
}

/*	header style	*/
header {
	padding: 10px 10px 20px 10px; 
	background-color: #FFFFFF; 
	border-bottom: 3px solid #EB4A31;
}
header a{
	padding-left: 10px;
	padding-right: 10px;
}
header .logo {
	display: inline-block; width: 250px;
}
header .logo > img {
	height: 32px; 
	padding-top: 8px;
}
header nav {
	display: inline-block; 
	text-align: right; 
	position: absolute; 
	right: 0px; 
	padding-top: 16px; 
	padding-right: 300px; 
	font-family: 'Lato', sans-serif; 
	font-weight: 700;
}
header .userbox {
	top: 0px; 
	display: inline-block; 
	background-color: #F8Ec64; 
	padding: 14px 10px 14px 10px; 
	width: 200px; 
	position: absolute; 
	right: 0px;
}
header .userbox > img {
	height: 30px; 
	padding-top: 8px
}
header .userbox .userinfo {
	display: inline-block;
	font-family: 'Lato', sans-serif;text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
}
header .userbox .logout {
}

/*	universal link appearance */
a {
	text-decoration:none;
	color: #000000;
	transition: 0.3s;
}
a:hover{
    color: #F8D032;
    transition: 0.3s;
}

/*	footer style 	*/
footer {
	position: fixed;
	bottom: 0px;
	background-color: #333333;
	width: 100vw;
	height: 100px;		/* IF YOU MODIFY THIS HEIGHT, YOU MUST MODIFY #dashbody margin-bottom to match
					and also margin-bottom on body */
	color: #FFFFFF;
	padding: 15px;
	display: block;
	font-size: 0.9em;
	font-family: 'Lato', sans-serif;
}

footer img {
	height: 80px;
}
footer div {
	display: inline-block;
	width: 22vw;
	vertical-align: middle;
}
footer a {
	color: #FFFFFF;
	font-weight: bold;
}
footer a:hover {
	color: #F8D032;
}

/* 	FILE MANAGER */
.filemanager {
	height: 50vh; 
	overflow-y: auto; 
	font-weight: 500;
}

.fileitem > .icon {
	height: 48px; 
	width: 48px; 
	display: inline-block;
}

.fileitem > .icon > img {
	height: 36px; 
	vertical-align: middle;
}
.fileitem > .filename {
	height: 48px; 
	width: 230px; 
	display: inline-block; 
	text-align: left;
	font-size: 14px;
	line-height: 16px;
}
.fileitem:hover {
	background-color: #F9F5B8;
}
/* 	deleteinfo is the help text in the file manager to delete files */
#deleteinfo
{
	font-size: 1.2em;
	color: #800000;
	font-weight: bold;
	display: none;
}	

#editfolder {
	padding-bottom: 40px;
}


/* DASH BOARD */
.dashboardheading {
	border-bottom: 2px solid #707070;
	padding: 60px 80px;
	margin: auto 60px auto 60px;
}
.dashboardwelcome {
	font-family: 'Quicksand', sans-serif; 
	font-weight: 500; 
	display: inline-block; 
	font-size: 36px;
}

.dashboardtitle {
	padding: 40px 80px;
	margin: auto 60px auto 60px;
	font-family: 'Quicksand', sans-serif; 
	font-size: 32px; 
	display: block;
}

.dashboarddate {
	font-family: 'Lato', sans-serif;
	display: inline-block;
	text-align: right;
	float:  right;
}
.dashboardcontainer {
	display: block; 
	margin-left: 40px; 
	padding-right: 40px; 
	text-align: left;
}

.dashboard-news{
    display: block;
    margin-left: 40px;
    padding: 40px 20px;
    text-align: left;
}


/* calendar */
.departmentbox {
	font-family: 'Quicksand', sans-serif; 
	font-weight: 500;
}


.cal {
        width: 100%;
}
.cal td      {
    width: 8% ;
        height: 100px;
        border: 1px solid #808080;
        padding: 5px;
}
.cal .live,
.cal .date,
.cal .empty {
        vertical-align: top;
}
.cal .live {
        background-color: #F9F5B8;
}
.cal .empty {
        background-color: #E0E0E0;
}
.cal .date {
        background-color: #FFFFFF;
}
.cal .interactive {
        cursor: pointer;
	transition: 0.3s;
}
.cal .wd {
        text-align: center;
        background-color: #000000;
        color: #FFFFFF;
}
.cal .wd td { height: 40px; }
.cal .interactive:hover {
        background-color: #F6ED65;
	transition: 0.3s;
}

.calform  label {
	display: block;
	margin-top: 20px;
	font-weight: bold;
}

.calform  label > input[type=text] {
	display: block;
	width: 300px;
}
.caleventtitle {
	font-weight: bold;
	font-size: 1.2em;
}


/* Accordion */
.panel-default {
    border-color: #EB4A31;
}
.panel-default>.panel-heading {
    color: #ffffff;
    background-color: #FF361D;
    border-color: #EB4A31;
    transition: 0.1s;
}
.panel-default>.panel-heading:hover {
    background-color: #EB4A31;
    border-color: #EB4A31;
    transition: 0.1s;
}


.admintbl
{
	background-color: #FFFFFF;
	border: 1px solid #808080;
	border-radius: 10px;
	
}
.admintbl td { padding: 5px; } 
.admintbl tr:hover
{
	background-color: #F8D032;

}
.admintbl  a:hover {
	color: #000000;
}

