/* Move down content because we have a fixed navbar that is 50px tall */
body {
	padding-top: 50px;
}

/* Some responsive styles for our main content */
.main {
	padding: 20px;
}
@media (min-width: 768px) {
	.main {
		padding-right: 40px;
		padding-left: 40px;
	}
}

/* Draw a line under these headers */
.sub-header {
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
}

/* Make songtext preformatted because whitespace matters */
div.songtext {
	line-height: normal;
	white-space: pre;
	font-family: monospace;
}

/* Chord keys are blue */
div.songtext span.chord {
	color:#0000AA;
	font-weight: bold;	
}

/* Chord modifiers are red */
div.songtext span.chord1 {
	color:#AA0000;
	font-weight: bold;	
}

/* Section headings are green */
div.songtext span.heading {
	color:#00AA00;
	font-weight: bold;	
}

/* Textarea for editing the song has word wrap turned off */
#txt-song {
	line-height: normal;
	white-space: pre;
	word-wrap: normal;
	font-family: monospace;
}