* {
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.body {
	background-color: #ffffff;
}
.login {
	width: 400px;
	background-color: #ffffff;
	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
	margin: 100px auto;
}
.login h1 {
	text-align: center;
	color: #5b6574;  
	font-size: 36px;
	padding: 20px 0 20px 0;
	border-bottom: 1px solid #dee0e4;
}
.login form {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 20px;
}
.login form label {
/* this is the coloured boxes by the user name and password box */
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	background-color: #006400;
	color: #ffffff;
}
.login form input[type="password"], .login form input[type="text"], .login form input[type="select"] {
	width: 310px;
	height: 50px;
	border: 1px solid #dee0e4;
	margin-bottom: 20px;
	padding: 0 15px;
}
.login form input[type="submit"] {
	width: 100%;
	padding: 15px;
	margin-top: 20px;
	background-color: #006400;
	border: 0;
	cursor: pointer;
	font-weight: bold;
	color: #ffffff;
	transition: background-color 0.2s;
}

.login form input[type="submit"]:hover {
	background-color: #00fa9a;
	color: #000000;
	transition: background-color 0.2s;
}

.navtop {
	background-color: #006400;
	height: 100px;
	width: 100%;
	border: 0;
}
.navtop div {
	display: flex;
	margin: 10px auto;
	width: 1000px;
	height: 100%;
}
.navtop div h1 {
	flex: 1;
	font-size: 48px;
	padding: 10px;
	margin: 0;
	color: #eaebed;
	font-weight: bold;
}
.navtop div h1, .navtop div a {
	display: inline-flex;
	align-items: center;
}
.navtop div a {
	padding: 0 20px;
	text-decoration: none;
	color: #c1c4c8;
	font-weight: bold;
}
.navtop div a i {
	padding: 2px 8px 0 0;
}
.navtop div a:hover {
	color: #eaebed;
}
.body.loggedin {
	background-color: #f3f4f7;
}
.content {
	width: 1000px;
	margin: 0 auto;
}
.content h2 {
	margin: 0;
	padding: 25px 0;
	font-size: 22px;
	border-bottom: 1px solid #e0e0e3;
	color: #4a536e;
}
.content > p, .content > div {
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
	margin: 5px 0;
	padding: 5px;
}
.content > p table td, .content > div table td {
	padding: 5px;
}
.content > p table td:first-child, .content > div table td:first-child {
	font-weight: bold;
	color: #4a536e;
	padding-right: 15px;
}
.content > div p {
	padding: 5px;
	margin: 0 0 10px 0;
}
.btns {
	display: flex;
}
.btns .btn {
	display: inline-block;
	text-decoration: none;
	background-color: #006400;
	font-weight: bold;
	font-size: 20px;
	border-radius: 5px;
	color: #ffffff;
	padding: 20px 20px;
	margin: 5px 10px 5px 0;
}
.btns .btn:hover {
	background-color: #00fa9a;
	color: #000000;
}
.btns .btn.red {
	background-color: #b63838;
}

/* these all started with .home originally */

 .tickets-list {
	display: flex;
	flex-flow: column;
}
 .tickets-list .ticket {
	padding: 15px 0;
	width: 100%;
	border-bottom: 1px solid #ebebeb;
}
 .tickets-list .ticket .con {
	display: flex;
	justify-content: center;
	flex-flow: column;
	font-size: 12px;
}
 .tickets-list .ticket i {
	text-align: center;
	width: 40px;
	color: #b3b3b3;
}
 .tickets-list .ticket .title {
	font-weight: 600;
	color: #666666;
}
 .tickets-list .ticket .msg {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	max-width: 400px;
	color: #999999;
	font-size: 10px;
}
 .tickets-list .ticket .created {
	flex-grow: 1;
	align-items: flex-end;
	color: #999999;
	font-size: 10px;
}
 .tickets-list .ticket:last-child {
	border-bottom: 0;
}
 .tickets-list .ticket:hover {
	background-color: #fcfcfc;
}
/* end of the .home set  */


.view h2 .open, .view h2 .resolved {
	color: #38b673;
}
.view h2 .closed {
	color: #b63838;
}
.view .ticket {
	padding: 20px 0;
}
.view .ticket .created {
	color: gray;
}
.view .comments {
	margin-top: 15px;
	border-top: 1px solid #ebebeb;
	padding: 25px 0;
}
.view .comments .comment {
	display: flex;
	padding-bottom: 5px;
}
.view .comments .comment div {
	display: flex;
	align-items:flex-start;
	justify-content: center;
	width: 70px;
	color: #e6e6e6;
	transform: scaleX(-1);
}
.view .comments .comment p span {
	display: flex;
	font-size: 14px;
	padding-bottom: 5px;
	color: gray;
}
.create form, .view form {
	padding: 15px 0;
	display: flex;
	flex-flow: column;
	width: 400px;
}
.create form label, .view form label {
	display: inline-flex;
	width: 100%;
	padding: 4px 0;
	margin-right: 25px;
	font-size: 12px;
	font-weight: bold;
}
.create form input, .create form textarea, .view form input, .view form textarea {
	padding: 4px;
	width: 100%;
	margin-right: 25px;
	margin-bottom: 15px;
	border: 1px solid #cccccc;
	font-size: 12px;
}
.create form textarea, .view form textarea {
	height: 100px;
}
.create form input[type="submit"], .view form input[type="submit"] {
	display: block;
	background-color: #006400;
	border: 0;
	font-weight: bold;
	font-size: 14px;
	color: #FFFFFF;
	cursor: pointer;
	width: 200px;
	margin-top: 15px;
	border-radius: 5px;
}
.create form input[type="submit"]:hover, .view form input[type="submit"]:hover {
	background-color: #32a367;
}


.cust.content.create {
	display: flex;	
	flex-flow: column;
	margin-left: 20px;
}

/* below is for the registration form */

.register {
	width: 400px;
	background-color: #ffffff;
	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
	margin: 100px auto;
}

.register h1 {
	text-align:center;
	color: #ffffff;
	font-size: 24px;
	padding: 20px 0 20px 0;
	background-color: #006400;
	border-bottom: 1px solid #dee0e4;
}
.register form {
	display: flex;
	flex-wrap: wrap;
	justify-content:center;
	padding-top: 20px;
}
.register form label {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height:50px;
	background-color: #006400;
	color: #ffffff;
}
.register form select {
	width: 310px;
	height: 50px;
	border: 1px solid #dee0e4;
	margin-bottom: 20px;
	padding: 0 15px;
}
.register form input[type="password"], .register form input[type="text"], .register form input[type="email"], .register form input[type="list"] {
	width: 310px;
	height: 50px;
	border: 1px solid #dee0e4;
	margin-bottom: 20px;
	padding: 0 15px;
}
.register form input[type="submit"] {
	width: 100%;
	padding: 15px;
	margin-top: 20px;
	background-color: #006400;
	border: 0;
	cursor: pointer;
	font-weight: bold;
	color: #ffffff;
	transition: background-color 0.2s;
}
.register form input[type="submit"]:hover {
	background-color: #2868c7;
	transition: background-color 0.2s;
}
/* for repairform below */
.repair {
	width: 600px;
	width: 600px;
	background-color: #ffffff;
	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
	margin: 20px auto;
}

.repair h1 {
	text-align:center;
	color: #ffffff;
	background-color: #006400;
	font-size: 24px;
	padding: 20px 0 20px 0;
	border-bottom: 1px solid #dee0e4;
}
.repair form {
	display: flex;
	flex-wrap: wrap;
	justify-content:left;
	padding-top: 20px;
}
.repair form label {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100px;
	height:50px;
	background-color: #ffffff;
	color: #000000;
}

.repair form input[type="password"], .repair form input[type="text"], .repair form input[type="email"], .repair form input[type="list"] {
	width: 490px;
	height: 50px;
	font-size: 12px;
	border: 1px solid #dee0e4;
	margin-bottom: 20px;
	padding: 0 15px;
}
.repair form select {
	width: 490px;
	height: 50px;
	font-size: 12px;
	border: 1px solid #dee0e4;
	margin-bottom: 20px;
	padding: 0 15px;
}
.repair form input[type="textarea"] {
	border: 1px solid #dee0e4;
	margin-bottom: 20px
	padding: 0 15px;
	font-size: 11px;
	width: 490px;
	height: 30px;
	resize: none;
	white-space: pre;
	
}
.repair form input[type="submit"] {
	width: 100%;
	padding: 15px;
	margin-top: 20px;
	background-color: #006400;
	border: 0;
	cursor: pointer;
	font-weight: bold;
	color: #ffffff;
	transition: background-color 0.2s;
}
.repair form input[type="submit"]:hover {
	background-color: #2868c7;
	transition: background-color 0.2s;
}
/* for customer form below */
.customer {
	
	width: 800px;
	background-color: #ffffff;
	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
	margin: 10px auto;
}

.customer h1 {
	text-align:center;
	color: #ffffff;
	background-color: #006400;
	font-size: 24px;
	padding: 20px 0 20px 0;
	border-bottom: 1px solid #dee0e4;
}
.customer form {
	display: flex;
	flex-wrap: wrap;
	justify-content:center;
	padding-top: 20px;
}
.customer form label {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 150px;
	height:50px;
	background-color: #ffffff;
	color: #000000;
}

.customer form input[type="password"], .customer form input[type="text"], .customer form input[type="email"], .customer form input[type="list"], .customer form input[type="tel"] {
	width: 640px;
	height: 50px;
	font-size: 12px;
	border: 1px solid #dee0e4;
	margin-bottom: 20px;
	padding: 0 15px;
}

.customer form input[type="number"] {
	width: 640px;
	height: 50px;
	font-size: 12px;
	border: 1px solid #dee0e4;
	margin-bottom: 20px;
	padding: 0 15px;
}

.customer form select {
	width: 640px;
	height: 50px;
	font-size: 12px;
	border: 1px solid #dee0e4;
	margin-bottom: 20px;
	padding: 0 15px;
}

.customer form input[type="textarea"] {
	border: 1px solid #dee0e4;
	margin-bottom: 20px
	padding: 0 15px;
	font-size: 11px;
	width: 490px;
	height: 30px;
	resize: none;
	white-space: pre;
	
}
.customer form input[type="submit"] {
	width: 100%;
	padding: 15px;
	margin-top: 20px;
	background-color: #006400;
	border: 0;
	cursor: pointer;
	font-weight: bold;
	color: #ffffff;
	transition: background-color 0.2s;
}
.customer form input[type="submit"]:hover {
	background-color: #2868c7;
	transition: background-color 0.2s;
}

.piechart {
	margin-top: 50px;
	display: block;
	position: flex;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background-image: conic-gradient(
		pink 70deg,
		lightblue 0 235deg,
		orange 0);
}
body. piechart {
	display: flex;
	justify-content: center;
	align-items:center;
}
aside {
	width: 30%;
	padding-left: 15px;
	margin-left: 15px;
	float: right;
	font-style: italic;
	background-color: lightgray;
}
/* this is the table formating */

.rowt {
	margin-left:-5px;
	margin-right:-5px;
}
.columnt {
	float: left;
	width: 50%;
	padding: 5px;
}
.rowt::after {
	content: "";
	clear: both;
	display: table;
}

table1 {
	border-collapse: collapse;
	border-spacing: 0;
	width: 80%;
	border: 1px solid #ddd;
}
th1, td1 {
	text-align: left;
	padding: 10px;
	font-size: 12px;
}
tr1:nth-child(even) {
	background-color:#f2f2f2;
}
 @media screen and (max-width: 1000px) {
	.columnt {
		width: 100%;
	}
}

