* {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	margin: 0px;
	padding: 0px;
}
body { 
	background-color: #ecf2ec;
	min-width:800px;
}
h1 {
	font-size: 16px;
	padding-left: 20px;
	padding-top: 1px;
	margin-top: 10px;
	margin-bottom: 1px;
	background-color: lightgrey;
	color: #7eaa80;
	border-radius: 10px;
	height: 22px;
}
h2 {
	font-size: 11px;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-left: 0px;
	margin-top: 10px;
	margin-bottom: 0px;
	background-color: white;
	border-radius: 10px;
}
p {
	color: #7eaa80;
	margin-top: 10px;
	margin-bottom: 10px;
}
pre {
font-family: monospace;

}
ul {
	margin-left: 10px;
	list-style-type: none;
}
li, li a {
	text-decoration: none;
	padding: 3px;
	font-size: 12px;
}

/* NAVIGATION MENU TOP */

nav {
	background-color: #555555;
	height: 30px;
	display: flex;
	flex-direction: row;
}
nav .navitem {
	flex-grow: 5;
	margin-top: 3px;
	margin-left: 5px;
	margin-right: 5px;
	margin-bottom: 0px;
	background-color: #7eaa80;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	text-decoration: none;
	color: white;
	display:flex;
	justify-content: center;
	padding-top: 5px;
}
nav .navitem:hover {
	margin-top: 8px;
	background-color: white;
	color: #7eaa80;
}
nav .navitem:nth-of-type(1) {
	margin-left: 50px;
}
nav .navspacer {
	flex-grow: 30;
}
nav .navbuttons {
	flex-grow: 1;
	display:flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: white;
}
.navbuttonimage {
	height:20px;
}
.navbalk {
	margin: 0px 0px 0px 0px;
	background-color: #7eaa80;
	height: 5px;
}

/* ADMIN RESTRICTED */

.restricted-menu {
	background-color: #aa807e !important;
	color: #dae6e1 !important;
}

/* FOOTER */

.footer {
	position: fixed;
	bottom: 0px;
	border-top: 5px #7eaa80 solid;
	height: 20px;
	width: 100%;
	font-size: 11px;
	padding-left: 20px;
	padding-top: 7px;
	background-color: #555555;
	color: white;
}
.footerspacer {
	margin-top: 10px;
	border-top: 2px lightgrey solid;
	padding-top: 20px;
}

/* START CRUMPATH */

.crumbpath {
	font-size: 11px;
	margin-left: 50px;
	margin-right: 50px;	
	padding-left: 25px;
	padding-top: 3px;
	margin-top: 10px;
	margin-bottom: 10px;
	border: 1px yellowgreen solid;
	border-radius: 10px;
	height: 15px;
}
.crumbpath a {
	text-decoration: none;
	color: #555555;
}

/* START POPUP */

.popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: none; /* Hidden by default */
	justify-content: center;
	align-items: center;
}
.popup-frame {
	background: white;
	padding: 20px;
	text-align: center;
	width: 80%;
	max-width: 300px;
	border: 3px #cc2936 solid;
	border-radius: 10px;
}
.popup-header {
	font-size: 14px;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-left: 0px;
	margin-top: 10px;
	margin-bottom: 0px;
	color: #cc2936;
	border-radius: 10px;
}
.popup-content {
	font-size: 11px;
	padding: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	color: #7eaa80;
}
.popup-button {
  display: inline-flex; /* Use inline-flex for inline-block behavior with flexbox */
  align-items: center; /* Align items vertically */
  justify-content: center; /* Optional: Center the text horizontally */
  background-color: #cc2936;
  border: 1px #ff0000 solid;
  border-radius: 10px;
  color: white;
  height: 20px;
  width: 212px;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 10px;
  text-decoration: none;
  line-height: 1; /* Ensure no extra space inside */
}

.popup:target {
  display: flex;
}

/* MEDIA OVERVIEW FRAME IMAGE THUMBS */

.overview-thumb {
	max-width: 60px;
	max-height: 60px;
	margin: 2px;
	vertical-align: top;
}

.bordered {
	display: inline-block;
	border: 3px red solid;
}

/* INPUT FIELDS */

input {
	background-color: white;
	color: #7eaa80;
	border: 1px green solid;
	border-radius: 10px;
	outline: none;
	height: 20px;
	width: 200px;
	margin-top: 2px;
	margin-bottom: 2px;
	padding-left: 5px;
	padding-right: 5px;
}
input:focus {
	border: 1px orange solid;
	caret-color: orange;
}

input[type="file"] {
    display: none;
}

/* IMAGE DRAG DROP */

#dropzone {
	width: 200px;
	height: 200px;
	border: 2px dashed #7eaa80;
	border-radius: 10px;
	color: #7eaa80;
	text-align: center;
	line-height: 200px;
	margin: 20px auto;
	position: relative;
}
#dropzone:hover {
	border-color: #d8e5d8;
	color: lightgrey;
}
#preview {
	width: 300px;
	height: 200px;
	border: 1px solid #ecf2ec;
	color: #7eaa80;
	text-align: center;
	line-height: 200px;
	margin: 20px auto;
	position: relative;
	overflow:hidden;
	object-fit: cover;
}
#preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* SELECT BOX */

.selector {
	background-color: white;
	color: #7eaa80;
	border: 1px green solid;
	border-radius: 10px;
	height: 16px;
	width: 210px;
	margin-top: 4px;
	margin-bottom: 2px;
	padding-left: 5px;
	padding-right: 5px;
}

/* BUTTON */

.systembutton {
	display: inline-block;
	background-color: #ecf2ec;
	border: 1px green solid;
	border-radius: 10px;
	color: orange;
	height: 25px;
	width: 212px;
	text-align: center;
	padding-left: 5px;
	padding-right: 5px;
	margin-top: 10px;
	text-decoration: none;
}
.systembutton:hover {
	border: 1px orange solid;
	color: #7eaa80;
	background-color: #F5F5F5;
}

.hrefbutton {
	display: inline-block;
	background-color: #ecf2ec;
	border: 1px green solid;
	border-radius: 10px;
	color: orange;
	height: 18px;
	width: 212px;
	text-align: center;
	padding-top: 5px;
	padding-left: 5px;
	padding-right: 5px;
	margin-top: 10px;
	text-decoration: none;

}
.hrefbutton:hover {
	border: 1px orange solid;
	color: #7eaa80;
	background-color: #F5F5F5;
}

/* LOCKED */

.locked {
	color: black;
}

/* IMAGE DOWNLOAD */

.downloadicon {
	width: 25px;
	height: 25px;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

/* HREF LINKS */

.menuinlinehreflink {
	color: #a68277;
	text-decoration: none;
}
.inlinehreflink {
	color: #a68277;
	text-decoration: none;
}
.inlinehreflinkh1 {
	text-decoration: none;
	font-size: 13px;
	height: 10px;
}
.inlineemoijlink {
	display: inline-block;
	font-size: 9px;
	text-decoration: none;
}

/* MESSAGE SYSTEM */

.messagebox {
	font-size: 10px;
	margin: 10px;
	margin-left: 50px;
	margin-right: 50px;
	padding: 2px;
	padding-left: 20px;
	background-color: orange;
	color: #555555;
	border-radius: 10px;
}

.headermessage {
	background-color: lightgoldenrodyellow;
	color: #7eaa80;
	font-size: 10px;
	margin-top: 5px;
	border-radius: 10px;
	padding: 2px;
	padding-left: 5px;
}

/* BASIC OUTPUT */

.container {
	margin-top: 0px;
	margin-left: 50px;
	margin-right: 50px;
	padding: 0px;
}

/* ROW */

.row {
	background-color: white;
	border: 0px blue solid;
	padding-left: 10px;
}
.headerrow {
	background-color: white;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	height: 10px;
	padding-left: 10px;
}
.bottomrow { /* B O TTOM */
	height: 10px;
	padding-left: 10px;
	padding-right: 0px;
	border-top: 8px white solid;
	background-color: white;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.buttonrow { /* B U TTON */
	height: 45px;
	padding-left: 10px;
	padding-right: 0px;
	border-top: 8px white solid;
	background-color: #96BA9F;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.rowitem {
	display: inline-block;
	height: 20px;
	color: #7eaa80;
	vertical-align: top; /* for overviews when NULL */
	margin: 0px;
	padding-left: 3px;
	margin-top: 2px;
	margin-bottom: 2px;
}
.reversed {
	background-color: #7eaa80;
	color: white;

}
.rowinput {
	display: inline-block;
}
.rowinput.widthfull {
    width: 89%;  
}
.rowinput.widthmedium {
    width: 45%;  
}
.padding-below {
	padding-bottom: 10px;
}
.rowstretch {
	height: auto;
	padding-bottom: 7px;
}
.rowitem.c1 { width: 8%; }
.rowitem.c2 { width: 16%; }
.rowitem.c3 { width: 24%; }
.rowitem.c4 { width: 32%; }
.rowitem.c5 { width: 40%; }
.rowitem.c6 { width: 48%; }
.rowitem.c7 { width: 56%; }
.rowitem.c8 { width: 64%; }
.rowitem.c9 { width: 72%; }
.rowitem.c10 { width: 80%; }
.rowitem.c11 { width: 88%; }
.rowitem.c12 { width: 96%; }

.rowzebra1 {
	background-color: #fdfafb;
}

.rowbottomborder {
	border-bottom: 1px lightgrey solid;
}
.rowcontent {
	margin-right: 5px;
}
/* CONFIRMATION */

.buttonyesno {
	display: inline-block;
	border-radius: 10px;
	height: 20px;
	width: 200px;
	padding-top: 4px;
	padding-bottom:2px;
	padding-left: 8px;
	padding-right: 8px;
	text-decoration: none;
	margin-top: 5px;
	margin-bottom: 5px;
	text-align: center;

}
.no {
	border: 1px green solid;
	background-color: #ecf2ec;
	color: black;
}
.yes {
	background-color: red;
	color: white;
}

.no:hover {
	border: 1px orange solid;
	color: #7eaa80;
	background-color: #F5F5F5;
}
.right {
	text-align: right;
}
.centered {
    text-align: center;
}

/* END FILE */