* {
	font-family: sans-serif;
}

.novote body {
	background: #cff;
}
.vote body {
	background: #afff99;
}


.opcion {
	display: inline-block;
	width: 3em;
}

.count {
	font-family: monospace;
	font-size: 14px;
	display: inline-block;
	width: 2em;
	text-align: right;
}

.voting-section.section-novote .count {
	display: none;
}


.ifvote {
	display: none;
}

.ifnovote {
	display: none;
}

.ifplaymusic {
	display: none;
}

.vote body > .ifvote {
	display: inherit;
}

.voting-section.section-vote .ifvote {
	display: inherit;
}

.voting-section.section-novote .ifnovote {
	display: inherit;
}

.playmusic .ifplaymusic {
	display: inherit;
}

.voting-section.section-novote button.votar.ifnovote  {
	display: inline;
}

.playmusic button.ifplaymusic  {
	display: inline;
}

.voting-section.section-vote .ifvote.barrita {
	display: inline-block;
}

li {
	height: 23px;
}

body {
	transition: background 0.5s;
}

.barrita .fill {
	transition: all 0.5s;
}

img.franco {
	position: fixed;
	right:0;
	top: 40%;
	width:200px;
	opacity: 0.8;
}

img.banner {
	max-width: 90%;

}

.barrita {
	background: rgba(0, 0, 0, 0.2);
	display: inline-block;
	margin-left: 30px;
	height: 5px;
	width: 200px;
}

.barrita .fill {
	background: black;
	display: block;
	height: 5px;
	width: 0px;
}

.voting-section.section-novote .total {
	display: none;
}

/* Session times display */
.session-schedule {
	margin: 20px auto;
	padding: 15px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	max-width: 600px;
	font-size: 14px;
}

.session-row {
	display: flex;
	justify-content: space-between;
	margin: 5px 0;
	padding: 3px 10px;
}

.session-name {
	font-weight: bold;
	text-align: right;
	flex: 0 0 180px;
}

.session-time {
	text-align: left;
	flex: 1;
	padding-left: 15px;
}

/* Voting sections container */
.voting-sections-container {
	display: flex;
	gap: 30px;
	justify-content: center;
	align-items: flex-start;
	margin: 20px auto;
	max-width: 1200px;
}

.voting-section {
	flex: 1;
	min-width: 300px;
	max-width: 500px;
}

.voting-section.sprint-section {
	background: rgba(255, 200, 0, 0.1);
	border: 2px solid rgba(255, 200, 0, 0.4);
	border-radius: 10px;
	padding: 15px;
}

.voting-section.gp-section {
	background: rgba(0, 150, 255, 0.05);
	border: 2px solid rgba(0, 150, 255, 0.2);
	border-radius: 10px;
	padding: 15px;
}

.voting-section .section-title {
	margin-top: 0;
	text-align: center;
	font-size: 18px;
}

/* Mobile responsive layout */
@media (max-width: 768px) {
	.voting-sections-container {
		flex-direction: column;
		gap: 20px;
	}

	.voting-section {
		max-width: 100%;
	}

	.session-schedule {
		font-size: 12px;
	}

	.session-row {
		flex-direction: column;
		gap: 5px;
	}

	.session-name {
		text-align: left;
		flex: none;
	}

	.session-time {
		padding-left: 0;
	}
}
