:root {
	--header-footer-bg:#D2D755;
	--header-footer-text:#006ba6;
	--header-footer-text-hover:#9adbe8;
	/*--card-header:#;*/
	/*--card-text:#;*/
	/*--button:#;*/
	/*--button-hover:#;*/
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	list-style: none;
}

html {
	font-size: 16px;
	font-family: Arial, sans-serif;
}
body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	margin: 0 auto;
	text-align: center;
}
a {
	text-decoration: none;
}
ol, ul {
	list-style: none;
    width: 100%;
}
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
.spacer {
	flex-grow: 1;
}

/* Header Section Styles */
header {
	position: relative;
	height: 70px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	background: var(--header-footer-bg);
	border-radius: 20px 20px 0 0;
	padding: 10px 20px;
}
.backendHeader {
	position: relative;
	height: 50px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	background: var(--header-footer-bg);
	padding: 5px 20px;
}
.logo {
	/*height: 100%;*/
	max-height: 60px;
}
.backendLogo {
	max-height: 40px;
}
nav {
	position: static;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 20px;
	z-index: 100;
	width: auto;
	background: transparent;
}
.nav.active {
	opacity: 1;
	visibility: visible;
}
.nav a {
	display: inline-block;
	padding: 7px 10px;
	border-radius: 10px;
	color: var(--header-footer-text);
	text-shadow: 1px 1px 3px var(--header-footer-text), -1px -1px whitesmoke;
	font-size: 1.1rem;
	background: var(--header-footer-bg);
}
.nav a:hover {
	color: whitesmoke;
	border: 2px solid whitesmoke;
}
.normalLink {
	color: var(--header-footer-text);
	text-shadow: 1px 1px 3px var(--header-footer-text), -1px -1px whitesmoke;
}
.activeLink {
	color: whitesmoke;
	border: 2px solid whitesmoke;
}
/* Footer Style */
footer {
	width: 100%;
	/* position: fixed;
	bottom: 0; */
    background-color: var(--header-footer-bg);
    color: var(--header-footer-text);
    padding: 10px 20px;
    text-align: center;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
footer .spacer {
    display: none;
}
.footerSocialIcons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    margin-top: 20px;
}
footer .footerSocialIcon a {
    color: var(--header-footer-text);
    font-size: 24px;
}
footer .footerSocialIcon a:hover {
    color: var(--header-footer-text-hover);
    transform: translateY(-3px);
    transition: all 0.3s;
}

/* Dashboard Menu */
.dashboard {
	/* max-width: 1200px;
	padding: 10px; */
	display: grid;
	height: calc(100vh - 100px);
	grid-template-columns: 1fr 6fr;
	/*gap: 10px;*/
}
.dashboardMenu {
	display: flex;
	flex-direction: column;
    justify-content: center;
	align-items: center;
	font-size: 0.9em;
}
.dashboardMenuItems {
	display: block;
	width: 100%;
	padding: 5px 15px;
	margin: 0;
	background: var(--header-footer-bg);
	color: var(--header-footer-text);
	text-align: left;
    font-size: 0.9em;
}
/*.dashboardMenuItems:hover {*/
/*	background: var(--header-footer-text);*/
/*	color: var(--header-footer-bg);*/
/*}*/
.dashboardMenuSubmenu {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
/*.dashboardMenuSubmenu.active {*/
/*	display: flex;*/
/*}*/
.dashboardMenuSubitems {
	display: block;
	width: 100%;
	padding: 5px 10px 5px 30px;
	margin:0;
	background: rgba(210, 215, 85, 0.5);
	color: var(--header-footer-text);
	text-align: left;
	font-size: 0.8em;
    cursor: pointer;
}
.dashboardMenuSubitems:hover {
	background: var(--header-footer-text);
	color: var(--header-footer-bg);
}
.dashboardMenuSubitems.active {
    background: var(--header-footer-text);
    color: var(--header-footer-bg);
}
@media screen and (max-width: 899px) {
    .dashboardMenu {
        display: none;
    }
}

@media screen and (max-width: 1023px){
	header {
		height: 70px;
		padding: 7px;
	}
	.logo {
		max-height: 50px;
	}
	.nav {
		position: absolute;
		top: 100%;
		right: 30px;
		width: 150px;
		background: var(--header-footer-bg);
		border-radius: 10px;
		border: 1px solid var(--header-footer-text);
		opacity: 0;
		visibility: hidden;
		gap: 5px;
		z-index: 1000;
	}
	.nav a {
		margin: 10px auto;
		font-size: 1rem;
	}
	.nav.active {
		opacity: 1;
		visibility: visible;
	}
}
@media screen and (min-width: 1024px) {
	.hamburgerButton {
		display: none;
	}
	footer {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
    footer .spacer {
        display: block;
        flex-grow: 1;
    }
}
/* Backend Menu */
.dashboardMenuContainer {
    border: var(--header-footer-bg) solid 2px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    overflow-y: auto;
}
.dashboardContentContainer {
    border: var(--header-footer-bg) solid 2px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    overflow-y: auto;
}
#adminMenu {
    font-size: 20px;
    font-weight: 600;
}
#adminPanel {
    font-size: 20px;
    font-weight: 600;
}
.dashboardMenu {
    width: 100%;
    /*height: 40px;*/
    /*background: lightblue;*/
    /*border-bottom: var(--header-footer-bg) solid 2px;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    items-align: center;
}
.dashboardContentHeader {
    width: 100%;
    height: 40px;
    background: lightblue;
    border-bottom: var(--header-footer-bg) solid 2px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    items-align: center;
}
