/* Accessibility-related styles */

.font-size-controls {
	display: flex;
	gap: 5px; /* Adjust as needed for spacing between A- and A+ */
}
/* 
html {
	font-size: 16px; 
}


body {
	font-size: 1rem; 
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.5rem;
}

p,
li {
	font-size: 1rem;
} */

/* .control-button,
.btn {
	font-size: 1rem;
} */

.logo {
	font-size: 1.5rem;
}

.progress-text {
	font-size: 0.85rem;
}

/* .choice-btn {
	font-size: 1.1rem;
} */

.modal-body kbd {
	font-size: 0.9rem;
}

.app-footer {
	font-size: 0.9rem;
}

@media (min-width: 768px) {
	.progress-text {
		font-size: 0.9rem;
	}
}

.control-button,
.control-select {
	background: var(--background-color);
	border: 1px solid var(--border-color);
	border-radius: 5px;
	padding: 8px 12px;
	cursor: pointer;
	color: var(--text-color);
}

/* Modals */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1000; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgba(0, 0, 0, 0.6); /* Black w/ opacity */
	align-items: center;
	justify-content: center;
}

.modal-content {
	background-color: var(--card-background);
	margin: auto;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 8px var(--shadow-color);
	width: 80%;
	max-width: 600px;
	position: relative;
}

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.modal-header h2 {
	margin: 0;
	color: var(--primary-color);
}

.modal-body {
	padding-bottom: 20px;
}

.modal-body p {
	margin-bottom: 15px;
}

.modal-body ul {
	list-style: none;
	padding: 0;
}

.modal-body li {
	background-color: var(--background-color);
	margin-bottom: 10px;
	padding: 10px;
	border-radius: 5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal-body kbd {
	background-color: var(--border-color);
	padding: 3px 8px;
	border-radius: 3px;
	font-family: monospace;
	font-size: 0.9em;
}

.close-button {
	color: var(--text-color);
	font-size: 28px;
	font-weight: bold;
	background: none;
	border: none;
	cursor: pointer;
}

.close-button:hover,
.close-button:focus {
	color: var(--primary-color);
	text-decoration: none;
	cursor: pointer;
}
