/* BreedLife Weekly Devotional - Version 2.5 */
/* Fonts and resets */
:root {
	--bg: #0d1b0d;
	--card: #1a2e1a;
	--muted: #94a3b8;
	--text: #e2e8f0;
	--accent: #22c55e;
	--accent-2: #0ea5e9;
	--border: #2d4a2d;
	--primary: #16a34a;
	--primary-contrast: #0d1b0d;
	--focus: #f59e0b;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
	margin: 0;
	padding-top: 20px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
	background: linear-gradient(180deg, var(--bg), #0d1b0d 60%);
	color: var(--text);
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	min-height: 100vh;
	width: 100%;
	box-sizing: border-box;
}

/* Content always visible */
#main {
	opacity: 1;
}

/* Footer spacing fix for mobile */
.site-footer {
	margin-top: 2rem;
	padding: 1rem 0 8rem 0;
	text-align: center;
}

.footer-links {
	margin-top: 0.5rem;
}

.footer-links a {
	margin: 0 0.25rem;
}

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* Header */
.site-header {
	position: sticky; 
	top: 0; 
	z-index: 50;
	background: rgba(13,27,13,0.75);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--border);
	display: flex; 
	align-items: center; 
	justify-content: space-between;
	padding: 24px 16px 20px 16px;
	width: 100%;
	box-sizing: border-box;
	min-height: 100px;
	margin-top: 8px;
}

.brand { 
	display: flex; 
	align-items: center; 
	gap: 12px; 
	flex-shrink: 0;
	min-width: 0;
}

.brand-text {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.logo { 
	width: 48px; 
	height: 48px; 
	flex-shrink: 0;
	object-fit: contain;
}

.brand-title { 
	font-weight: 700; 
	letter-spacing: 0.2px; 
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 20px;
	line-height: 1.2;
}

.brand-sub { 
	display: block; 
	font-size: 14px; 
	color: var(--muted); 
	margin-top: -2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.site-nav { 
	display: flex; 
	align-items: center; 
	gap: 8px; 
	flex-shrink: 0;
	flex-wrap: nowrap;
}

.site-nav .btn {
	font-size: 14px;
	font-weight: 500;
}

/* Container */
.container { 
	max-width: 960px; 
	margin: 0 auto; 
	padding: 24px 16px; 
	width: 100%;
	box-sizing: border-box;
	position: relative;
}

/* Cards */
.card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 16px;
	margin-bottom: 16px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
	min-height: 200px;
	transition: opacity 0.2s ease;
}

/* Typography */
.h1 { font-size: 24px; margin: 0 0 4px 0; }
.h2 { font-size: 20px; margin: 0 0 12px 0; }
.h3 { font-size: 16px; margin: 16px 0 8px 0; color: #d1d5db; }
.h3.maroon { color: #FF6B6B; font-weight: 600; }
.muted { color: var(--muted); font-size: 14px; }
.verse { font-style: italic; background: rgba(34,197,94,0.08); border-left: 3px solid var(--accent); padding: 8px 12px; border-radius: 6px; }
.reading { white-space: pre-wrap; }
.prose p { margin: 0 0 12px 0; }

/* Buttons */
.btn, .btn-link, .icon-btn, .select { 
	font: inherit; 
	color: inherit; 
	box-sizing: border-box;
}
.btn {
	background: #0b2436; 
	color: #dbeafe; 
	border: 1px solid #1e3a8a;
	padding: 8px 12px; 
	border-radius: 8px; 
	cursor: pointer;
	transition: transform 0.02s ease, background 0.2s ease, border-color 0.2s ease;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	min-width: 0;
	flex-shrink: 0;
}
.btn:hover { background: #0e2d45; border-color: #2563eb; }
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
.btn-primary { 
	background: var(--primary); 
	border-color: #16a34a; 
	color: #04210f; 
	font-weight: 600; 
}
.btn-primary:hover { background: #22c55e; }

/* TTS buttons styling */
#ttsPlay { 
	background: #8B0000; 
	border-color: #A52A2A; 
	color: #FFFFFF; 
	font-weight: 500; 
	font-size: 13px;
	padding: 6px 10px;
}
#ttsPlay:hover { background: #A52A2A; border-color: #8B0000; }

#ttsPause, #ttsResume, #ttsStop { 
	background: #F0E68C; 
	border-color: #DAA520; 
	color: #2F4F2F; 
	font-weight: 500; 
	font-size: 13px;
	padding: 6px 10px;
}
#ttsPause:hover, #ttsResume:hover, #ttsStop:hover { background: #E6D973; border-color: #B8860B; }

.btn-link { background: transparent; border: none; color: #93c5fd; padding: 0; cursor: pointer; }
.btn-link:hover { text-decoration: underline; }

.icon-btn { background: #0b2436; border: 1px solid #1e3a8a; width: 36px; height: 36px; border-radius: 8px; }

/* select removed */

/* Form */
.form-row { display: grid; gap: 6px; margin-bottom: 12px; }
input, textarea { background: #FFF8DC; color: #000000; border: 1px solid #F5DEB3; border-radius: 8px; padding: 10px; }
input::placeholder, textarea::placeholder { color: #8B7355; opacity: 0.8; }
input:focus, textarea:focus { outline: 2px solid var(--accent-2); outline-offset: 2px; border-color: #2563eb; color: #000000; }
.form-actions { display: flex; justify-content: flex-end; }

.comments { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 10px; }
.comment { background: #FFF8DC; border: 1px solid #F5DEB3; border-radius: 10px; padding: 10px; color: #2F4F2F; }
.comment .meta { font-size: 12px; color: #8B7355; margin-bottom: 6px; }

/* Layout helpers */
.section-header { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.tts-controls { 
	display: flex; 
	flex-direction: column; 
	gap: 12px; 
	margin-top: 12px; 
	min-height: 80px;
}
.voice-selection { display: flex; justify-content: center; width: 100%; }
.tts-buttons { 
	display: flex; 
	gap: 8px; 
	flex-wrap: wrap; 
	justify-content: center;
	min-height: 40px;
	align-items: center;
}

/* Voice selection responsive sizing */
.select { 
	background: #0b2436; 
	border: 1px solid #1e3a8a; 
	border-radius: 8px; 
	padding: 8px 10px; 
	min-width: 200px; 
	max-width: 100%;
	width: 100%;
	font-size: 14px;
	height: 40px;
}

@media (max-width: 768px) {
	.select {
		min-width: 150px;
		font-size: 13px;
		padding: 12px 10px;
		height: 44px;
	}
}

@media (max-width: 480px) {
	.select {
		min-width: 100px;
		font-size: 12px;
		padding: 12px 8px;
		height: 48px;
		-webkit-appearance: none;
		appearance: none;
		background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e2e8f0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
		background-repeat: no-repeat;
		background-position: right 8px center;
		background-size: 16px;
		padding-right: 32px;
	}
}

@media (max-width: 360px) {
	.select {
		min-width: 80px;
		font-size: 11px;
		padding: 10px 6px;
		padding-right: 28px;
		height: 44px;
	}
	
	.tts-controls {
		gap: 6px;
	}
	
	.tts-buttons {
		gap: 4px;
	}
}
.complete-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.checkbox { display: inline-flex; align-items: center; gap: 8px; }

/* Author */
#aboutHeading { 
	text-align: center; 
	width: 100%;
	margin: 0 auto;
}
.author { 
	display: flex; 
	flex-direction: column;
	align-items: center; 
	justify-content: center;
	gap: 16px; 
	text-align: center;
	width: 100%;
	margin: 0 auto;
}
.avatar { 
	width: 64px; 
	height: 64px; 
	border-radius: 50%; 
	object-fit: cover;
	border: 2px solid var(--border);
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.author-name { font-weight: 600; margin-bottom: 4px; }
.author-bio { 
	font-size: 14px; 
	line-height: 1.5; 
	color: var(--muted); 
	margin-top: 8px; 
	text-align: center;
	width: 100%;
}

/* Mobile-specific author centering fixes */
@media (max-width: 768px) {
	#aboutHeading {
		text-align: center !important;
		display: block !important;
		width: 100% !important;
		margin: 0 auto !important;
	}
	
	.author {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		text-align: center !important;
		width: 100% !important;
		margin: 0 auto !important;
	}
	
	.author > div {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		text-align: center !important;
		width: 100% !important;
	}
	
	.author-name {
		text-align: center !important;
		display: block !important;
		width: 100% !important;
		margin: 0 auto !important;
	}
	
	.author-bio {
		text-align: center !important;
		display: block !important;
		width: 100% !important;
		margin: 0 auto !important;
	}
	
	.avatar {
		margin: 0 auto !important;
	}
	
	/* Ensure only one avatar shows at a time */
	.author img.avatar {
		display: block !important;
	}
	
	.author svg.avatar {
		display: none !important;
	}
	
	.author img.avatar[style*="display: none"] + svg.avatar {
		display: block !important;
	}
}

/* Extra aggressive Android/WebView centering fix */
@media screen and (max-width: 768px) {
	#aboutAuthor {
		text-align: center !important;
	}
	
	#aboutAuthor * {
		text-align: center !important;
	}
	
	#aboutHeading {
		text-align: center !important;
		width: 100% !important;
		margin: 0 auto !important;
	}
	
	.author {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
		text-align: center !important;
	}
	
	.author > div {
		text-align: center !important;
		width: 100% !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
	}
	
	.author-name, .author-bio {
		text-align: center !important;
		width: 100% !important;
		margin: 0 auto !important;
		display: block !important;
	}
	
	/* Ensure only one avatar shows at a time */
	.author img.avatar {
		display: block !important;
		margin: 0 auto !important;
	}
	
	.author svg.avatar {
		display: none !important;
	}
	
	.author img.avatar[style*="display: none"] + svg.avatar {
		display: block !important;
		margin: 0 auto !important;
	}
}

/* Footer */
.site-footer { text-align: center; color: var(--muted); padding: 2rem 12px 10rem 12px; border-top: 1px solid var(--border); margin-top: 2rem; }
.footer-links { margin-top: 1.5rem; }
.footer-links a { 
	color: var(--primary); 
	text-decoration: none; 
	font-size: 0.9em; 
	padding: 8px 12px;
	border-radius: 4px;
	transition: all 0.2s ease;
	display: inline-block;
}
.footer-links a:hover { 
	color: var(--accent-2); 
	text-decoration: underline; 
	background-color: rgba(34, 197, 94, 0.1);
}
.footer-links .separator { margin: 0 8px; color: var(--border); }

/* Privacy Notice */
.privacy-notice { margin: 12px 0; text-align: center; }
.privacy-notice small { color: var(--muted); font-size: 0.85em; }
.privacy-notice a { color: var(--primary); text-decoration: none; }
.privacy-notice a:hover { text-decoration: underline; }

/* Collapsible */
.collapsible[hidden] { display: none; }

/* Modal */
.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; display: grid; place-items: center; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.modal-content { position: relative; background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 12px; width: min(400px, 95vw); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }

/* Calendar */
.calendar-controls { display: flex; align-items: center; justify-content: space-between; gap: 6px; margin: 6px 0 8px; }
.cal-label { font-weight: 600; font-size: 14px; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.dow { text-align: center; color: var(--muted); font-size: 10px; padding: 2px 0; }
.cal-days { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-day { height: 28px; display: grid; place-items: center; border: 1px solid #1e3a8a; background: #0b2436; border-radius: 6px; cursor: pointer; color: #FFF8DC; font-size: 12px; }
.cal-day:hover { background: #0e2d45; }
.cal-day.out { opacity: 0.35; }
.cal-day.week-match { 
	outline: 2px solid #F0E68C; 
	outline-offset: -2px; 
	background: rgba(240, 230, 140, 0.2) !important;
	border-color: #F0E68C !important;
}
.cal-day.today { border-color: var(--accent-2); }

/* Mobile Navigation Fixes */
@media (max-width: 768px) {
	.site-header {
		padding: 16px 12px;
		min-height: 70px;
		flex-wrap: nowrap;
		overflow: hidden;
	}
	
	.brand {
		gap: 10px;
		min-width: 0;
		flex: 1;
	}
	
	.brand-text {
		min-width: 0;
		flex: 1;
	}
	
	.brand-title {
		font-size: 18px;
		line-height: 1.2;
	}
	
	.brand-sub {
		font-size: 13px;
	}
	
	.logo {
		width: 40px;
		height: 40px;
	}
	
	.site-nav {
		gap: 6px;
		flex-shrink: 0;
	}
	
	.site-nav .btn {
		font-size: 13px;
		padding: 6px 8px;
		min-width: auto;
		white-space: nowrap;
	}
}

@media (max-width: 480px) {
	body { 
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: none;
		-webkit-text-size-adjust: 100%;
		-webkit-tap-highlight-color: transparent;
	}
	
	.site-header { 
		padding: 12px 8px;
		min-height: 60px;
		position: sticky;
		top: 0;
		z-index: 50;
		backdrop-filter: blur(12px);
	}
	
	.brand { 
		gap: 8px;
		min-width: 0;
		flex: 1;
	}
	
	.brand-title {
		font-size: 16px;
		line-height: 1.1;
	}
	
	.brand-sub {
		font-size: 12px;
	}
	
	.logo { 
		width: 36px; 
		height: 36px; 
	}
	
	.site-nav { 
		gap: 4px;
		flex-shrink: 0;
	}
	
	.site-nav .btn {
		font-size: 12px;
		padding: 4px 6px;
		min-width: auto;
	}
	
	.container { 
		margin: 0 auto; 
		padding: 16px 12px;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}
	
	.modal-content { 
		padding: 8px; 
		width: 98vw; 
		margin: 0 auto;
	}
	
	.calendar-controls { 
		gap: 4px; 
		margin: 4px 0 6px; 
	}
	
	.cal-label { 
		font-size: 13px; 
	}
	
	.cal-day { 
		height: 24px; 
		font-size: 11px; 
	}
	
	.dow { 
		font-size: 9px; 
	}
	
	/* TTS buttons mobile sizing */
	#ttsPlay, #ttsPause, #ttsResume, #ttsStop {
		font-size: 12px;
		padding: 5px 8px;
		min-width: 60px;
	}
}

/* Extra small screens - navigation fixes */
@media (max-width: 360px) {
	.site-header {
		padding: 10px 6px;
		min-height: 55px;
	}
	
	.brand {
		gap: 6px;
	}
	
	.brand-title {
		font-size: 15px;
	}
	
	.brand-sub {
		font-size: 11px;
	}
	
	.logo {
		width: 32px;
		height: 32px;
	}
	
	.site-nav {
		gap: 3px;
	}
	
	.site-nav .btn {
		font-size: 11px;
		padding: 3px 5px;
		min-width: auto;
	}
	
	.container {
		padding: 12px 8px;
	}
}

/* Security form styles */
.captcha-container {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.captcha-container span {
	font-weight: 600;
	color: var(--text);
	background: var(--card);
	padding: 8px 12px;
	border-radius: 6px;
	border: 1px solid var(--border);
	min-width: 120px;
	text-align: center;
}

.captcha-container input {
	flex: 1;
	min-width: 80px;
	max-width: 100px;
}

.btn-small {
	font-size: 12px;
	padding: 6px 10px;
	min-width: auto;
}

.char-count {
	font-size: 12px;
	color: var(--muted);
	text-align: right;
	margin-top: 4px;
}

.security-status {
	margin-top: 12px;
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 14px;
	text-align: center;
}

.security-status.success {
	background: rgba(34, 197, 94, 0.1);
	color: #16a34a;
	border: 1px solid rgba(34, 197, 94, 0.3);
}

.security-status.error {
	background: rgba(239, 68, 68, 0.1);
	color: #dc2626;
	border: 1px solid rgba(239, 68, 68, 0.3);
}

.security-status.warning {
	background: rgba(245, 158, 11, 0.1);
	color: #d97706;
	border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Admin controls for comments */
.admin-controls {
	display: flex;
	gap: 8px;
	margin-top: 8px;
	opacity: 0.7;
	transition: opacity 0.2s;
}

.comment:hover .admin-controls {
	opacity: 1;
}

.delete-comment {
	background: rgba(239, 68, 68, 0.1);
	color: #dc2626;
	border: 1px solid rgba(239, 68, 68, 0.3);
	font-size: 12px;
	padding: 4px 8px;
}

.delete-comment:hover {
	background: rgba(239, 68, 68, 0.2);
}

@media (max-width: 480px) {
	.captcha-container {
		flex-direction: column;
		align-items: stretch;
	}
	
	.captcha-container span {
		min-width: auto;
	}
	
	.captcha-container input {
		max-width: none;
	}
}

@media (min-width: 768px) {
	.h1 { font-size: 28px; }
	.h2 { font-size: 22px; }
	.container { margin-top: 32px; }
	.modal-content { width: min(500px, 90vw); padding: 16px; }
	.cal-day { height: 32px; font-size: 13px; }
}

/* Audio Controls */
.audio-controls {
	background: rgba(26, 46, 26, 0.3);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 16px;
	margin-top: 12px;
}

.audio-player {
	margin-bottom: 12px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 8px;
	padding: 12px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.audio-player audio {
	display: none;
}

/* Compact Player Design */
.compact-player {
	width: 100%;
}

.player-main {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
}

.play-btn {
	background: #0ea5e9;
	color: white;
	border: none;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	font-size: 24px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 8px rgba(14, 165, 233, 0.4);
	transition: all 0.2s ease;
	flex-shrink: 0;
	font-weight: bold;
}

.play-btn:hover {
	background: #0284c7;
	transform: scale(1.08);
	box-shadow: 0 6px 12px rgba(14, 165, 233, 0.5);
}

.play-btn:active {
	transform: scale(1.02);
}

.player-info {
	flex: 1;
	min-width: 0;
}

.progress-container {
	width: 100%;
}

.progress-bar {
	width: 100%;
	height: 3px;
	background: #e5e7eb;
	border-radius: 2px;
	cursor: pointer;
	margin-bottom: 4px;
	position: relative;
}

.progress-fill {
	height: 100%;
	background: #0ea5e9;
	border-radius: 2px;
	width: 0%;
	transition: width 0.1s ease;
}

.time-display {
	display: flex;
	justify-content: space-between;
	font-size: 10px;
	color: #6b7280;
	font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
}

.player-controls {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-shrink: 0;
}

.control-btn {
	background: #0ea5e9;
	border: 2px solid #0284c7;
	border-radius: 8px;
	width: 50px;
	height: 50px;
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	font-weight: bold;
	color: white;
	box-shadow: 0 2px 4px rgba(14, 165, 233, 0.4);
}

.control-btn:hover {
	background: #0284c7;
	border-color: #0369a1;
	transform: scale(1.05);
	box-shadow: 0 3px 6px rgba(14, 165, 233, 0.5);
}

.control-btn:active {
	transform: scale(0.98);
}

.player-options {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.speed-select {
	background: #fff;
	border: 1px solid #d1d5db;
	border-radius: 4px;
	color: #374151;
	padding: 4px 6px;
	font-size: 11px;
	min-width: 50px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.speed-select:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.1);
}

.audio-status {
	font-size: 10px;
	color: #0ea5e9;
	font-weight: 500;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
	/* Force blue color for status text on mobile */
	#audioStatus {
		color: #0ea5e9 !important;
	}
	.audio-player {
		padding: 12px;
	}
	
	.player-main {
		gap: 10px;
		margin-bottom: 8px;
	}
	
	.play-btn {
		width: 50px;
		height: 50px;
		font-size: 18px;
		font-weight: 600;
	}
	
	.control-btn {
		width: 42px;
		height: 42px;
		font-size: 14px;
		font-weight: 600;
	}
	
	.player-controls {
		gap: 8px;
	}
	
	.time-display {
		font-size: 10px;
	}
	
	.speed-select {
		font-size: 11px;
		min-width: 50px;
		padding: 4px 6px;
	}
	
	.audio-status {
		font-size: 10px;
		color: #0ea5e9 !important;
	}
}

@media (max-width: 480px) {
	.audio-player {
		padding: 10px;
	}
	
	.player-main {
		gap: 8px;
		margin-bottom: 6px;
	}
	
	.play-btn {
		width: 46px;
		height: 46px;
		font-size: 16px;
		font-weight: 600;
	}
	
	.control-btn {
		width: 38px;
		height: 38px;
		font-size: 13px;
		font-weight: 600;
	}
	
	.player-controls {
		gap: 6px;
	}
	
	.time-display {
		font-size: 9px;
	}
	
	.speed-select {
		font-size: 10px;
		min-width: 45px;
		padding: 3px 5px;
	}
	
	.audio-status {
		font-size: 9px;
		color: #0ea5e9 !important;
	}
}

/* Audio button states */
audio:disabled + .audio-buttons button {
	opacity: 0.5;
}

@media (max-width: 480px) {
	.audio-buttons {
		flex-direction: column;
		align-items: stretch;
	}
	
	.audio-status {
		text-align: center;
		margin-left: 0;
		margin-top: 8px;
		color: #0ea5e9 !important;
	}
}

