body {
	background: #444;
	position: relative;
	min-height: 100vh;
	padding-bottom: 3.5em;
}

footer {
	position: absolute;
	bottom: 0px;
	border-top: 1px solid black;
	color: white;
	width: 100%;
	text-align: center;
}

footer a, footer a:hover {
	color: white;
	text-decoration: underline;
}

.jumbotron {
	margin-top: 2em;≥
}

#logo, #logo-bigger {
	border-radius: 10px;
}

#logo {
	width: 50px;
	height: 50px;
}

#logo-bigger {
	width: 200px;
	height: 200px;
}

.navbar {
	font-size: 18px;
}

#new-note-btn {
	margin-top: 1em;
}

#notes {
	width: 100%;
	margin-bottom: 1em;
}

.note {
	width: 100%;
	background: #AAA;
	margin-top: 1em;
	padding: 1em;
	cursor: pointer;
}

.note-dt {
	font-size: 12px;
}

.note-title {
	font-weight: bold;
	font-size: 22px;
}

.note-content {
	white-space: pre-line;
	word-break: break-word;
}

#add-file-btn {
	margin-top: 1em;
}

#files {
	width: 100%;
	padding-top: 0.5em;
	margin-bottom: 1em;
}

.file-outer {
	display: inline-block;
	position: relative;
	height: 0px;
	width: 50%;
	padding-bottom: 50%;
}
.file-inner {
	position: absolute;
	left: 0.5em;
	right: 0.5em;
	top: 0.5em;
	bottom: 0.5em;
	border: 1px solid black;
	background-color: white;
}
.file-icon {
	margin-top: 1em;
}
.file-name {
	position: absolute;
	padding: 2px;
	bottom: 0px;
	left: 0px;
	width: 100%;
	background: black;
	color: white;
	text-overflow: ellipsis;
	word-wrap: break-word;
	overflow: hidden;
	max-height: 3em;
	line-height: 1.5em;

	/*
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-all;
	max-height: 48px;
	*/
}

.trash-btn {
	position: absolute;
	top: 0px;
	right: 0px;
	border: 0px;
	background: transparent;
}
.trash-img {
	width: 20px;
}

.edit-btn {
	position: absolute;
	top: 0px;
	left: 0px;
	border: 0px;
	background: transparent;
}
.edit-img {
	width: 20px;
}

/* Custom coloring of links and buttons */
.btn-success {
	background-color: #12664F;
	border-color: #12664F;
}
a, .btn-link {
	color: #12664F;
}
a:hover, .btn-link:hover {
	color: black;
}

/******************** Helper classes ********************/
.center {
	text-align: center;
}

.center-i {
	margin-left: auto;
	margin-right: auto;
}

.al-right {
	text-align: right;
}

.white {
	color: white;
}
.red {
	color: red;
}