
body {
	font-family: Helvetica, Arial, Verdana;
}

.button {
	padding: 5px 10px;
	background: #eee;
	color: #333;
	text-decoration: none;
	display: inline-block;
}

.button[disabled] {
	opacity: .5;
}

#controls {
	padding-bottom: 20px;
}

#formats {
	padding-bottom: 20px;
}

#recordingsList {
	list-style: none;
	padding: 0;
	margin: 0;
}

#recordingsList li {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #999;
}

#recordingsList li:last-child {
	border-bottom: 0;
}

#recordingsList li audio {
	display: block;
	margin-bottom: 10px;
}

.loader {
	animation: spin 3s linear infinite;

	display: inline-block;

	width: 8px;
	height: 8px;
	border: 1px solid #999;
}

@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
