@charset "utf-8";
/* CSS Document */

body {
    margin: 0;
	font-family: Tahoma, Geneva, sans-serif;
	background-color: rgb(60,60,60);
}
ul {
	padding: 0;
}
li {
	margin: 10px 0px 0px 20px;
}

.webpage {
	background-color: rgb(60,60,60);
	color: rgb(250,250,250);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.nav {
    width: 100%;
	display: inline-block;
    margin: 0;
	position: fixed;
	z-index: 1;
}
.nav a {
	text-decoration: none;
	color: rgba(200,200,200,0.8);
	transition: 0.3s;
}
.nav a:hover, .nav a:active {
	color: rgba(250,100,250,1);
}
.nav table {
	width: 100%;
	height: 70px;
}
.nav td {
	text-align: center;
	background-color: black;
	width: 16%;
	border-left: 1px solid rgba(255,255,255,0.2);
	border-right: 1px solid rgba(255,255,255,0.2);
	box-shadow: 0px 3px 3px black;
	letter-spacing: 2px;
	transition: 0.3s;
	padding: 0 10px;
	cursor: pointer;
}
.nav td:hover, .nav td:active {
	transform: scale(1.1, 1.1);
	background-color: rgb(110,110,110);
}
.nav td:hover a {
	color: rgba(250,250,250,1);
}

.webpageContent {
	width: 90%;
	margin: 100px 5% 50px 5%;
}

#kanbanTitle {
	font-size: 2em;
	line-height: 100%;
	margin: 5px 0;
}
#updated {
	color: rgb(170, 170, 170);
	padding-left: 5px;
	line-height: 200%;
}
#metadata, .emElem {
	color: rgb(250, 250, 250);
	background-color: rgb(15, 15, 15);
	border-radius: 5px;
	padding: 2px 5px;
}
.metadataItem {
	color: springgreen;
}
.emElem {
	padding: 10px 15px;
}
.kanbanLink {
	padding: 5px 10px;
	border: 1px solid rgb(100,100,100);
	border-left: 5px solid rgb(100,100,100);
	line-height: 200%;
	border-radius: 5px;
	background-color: rgb(15,15,15);
}
#kanbanDataL {
	float: left;
	width: 50%;
}
#kanbanDataR {
	text-align: right;
	float: right;
	width: 50%;
}
#kanbanDataR a {
	margin-left: 10px;
	white-space: nowrap;
}
#kanbanData {
	overflow: hidden;
	margin-bottom: 10px;
}

/* kanban table */
#kanbanTable {
	border-spacing: 0;
	width: 100%;
	border: 2px solid rgb(90, 90, 90);
}
#kanbanTable tr {
	border: 1px solid rgb(100, 100, 100);
}
#kanbanTable #tableHeader td {
	background-color: rgb(250, 250, 250);
	color: rgb(0,0,0);
	border-bottom: 1px solid rgb(50, 50, 50);
	border-right: 1px solid rgb(200, 200, 200);
	border-left: 1px solid rgb(200, 200, 200);
	box-shadow: 2px 2px 4px rgb(100,100,100);
	text-align: center;
	top: 72px;
	position: sticky;
}
#kanbanTable td {
	padding: 10px 15px;
	width: 25%;
	text-align: right;
	font-size: 0.9em;
	border-bottom: 1px solid rgb(150,150,150);
}
.yellow {
	color: yellow;
}

/* task category styles */

.statusClass {
	border-right: 8px solid rgba(50, 50, 50, 0.8);
	border-left: 1px solid rgba(150, 150, 150, 0.2);
}
.statusClass.project {
	border-right: 8px solid rgba(250, 250, 250, 0.8);
	border-left: 1px solid rgba(150, 150, 150, 0.2);
}
.statusClass.project a {
	color: yellow;
}
.pendingStatus {
	background-color: rgb(150,150,150);
}
.studies {
	background-color: lightcyan;
	color: rgb(50,50,50);
}
.exam {
	background-color: rgb(240,200,250);
	color: rgb(50,50,50);
}
.language {
	background-color: rgb(250,250,210);
	color: rgb(50,50,50);
}
.habits {
	background-color: yellow;
	color: rgb(50,50,50);
}
.other {
	background-color: pink;
	color: rgb(50,50,50);
}
.chore {
	background-color: rgb(190,200,250);
	color: rgb(50,50,50);
}
.content {
	background-color: peachpuff;
	color: rgb(50,50,50);
}
.fun {
	background-color: snow;
	color: rgb(50,50,50);
}
.project {
	background-color: rgb(50,50,50);
	color: rgb(250,250,250);
}
.health {
	background-color: rgb(160,250,150);
	color: rgb(50,50,50);
}

.cd {
	line-height: 250%;
	font-size: 0.8em;
	padding: 4px;
	background-color: rgba(50,50,50,0.75);
	color: rgb(250,250,250);
	border-radius: 4px;
	border: 1px solid rgb(50,50,50);
	white-space: nowrap;
}

/* footer */

.footer {
	width: 100%;
    margin-top: 100px;
    background-color: rgba(0,0,0,0.95);
    color: white;
    border-top: 2px solid rgba(200,200,200,0.3);
}
.footer table {
    margin: 0 10%;
    width: 80%;
    padding: 30px 0 60px 0;
    border-spacing: 0px 15px;
}
.footer tr {
    padding: 5px 0;
	margin: 5px 0;
}
.footer td {
    text-align: left;
    width: 20%;
    border-left: 2px solid rgba(100,100,100,0.5);
    padding: 5px 10px 5px 10px;
}
.footer a {
	color: rgb(200,200,200);
	transition: 200ms;
	text-decoration: none;
}
.footer a:hover {
	color: yellow;
	padding-left: 5px;
}
.footer p {
	font-size: 1.4em;
	color: springgreen;
	margin-top: 20px;
	margin-left: 70px;
}
.footer .footer-title {
	padding-top: 20px;
	border: 0px;
	color: springgreen;
	font-size: 1.2em;
}
.toggle_td {
	color: rgb(200,200,200);
	transition: 0.3s;
	cursor: pointer;	
}
.toggle_td:hover {
	color: springgreen;
	padding-left: 5px;
}
.toggle_td_text {
	color: yellow;
	background-color: rgb(65,65,65);
	padding: 3px 5px;
	border-radius: 5px;
}

/* generic styles */
.yellow {
	color: yellow;
}
.adj-line-height {
	line-height: 100%;
}
.margin-top-mini {
	margin-top: 10px;
}

/* mobile styling */
@media only screen and (max-width: 700px) {
	.adj-line-height {
		line-height: 250%;
	}
}