pitch-generator {
	gap: 0.15rem;
}

#approx-pitch {
	font-size: 0.75rem;
	text-transform: none;
}

#generator-controls-container {
	display: flex;
	justify-content: space-between;
	gap: 0.5rem;
}

.generator-control-row>button {
	box-sizing: border-box;
	width: 50%;
	height: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: var(--space-sm);
}

.pitch-control button {
 width: 100%;
 height: 2rem;
}

#note-input {
	width: 30%;
	font-size: 1rem;
}

#pitch-display {
	cursor: pointer;
}

#toggle-control {
	display: flex;
}

#toggle-control div {
	border: 1px solid var(--blue);
	border-radius: 0;
	box-sizing: border-box;
	cursor: pointer;
	width: 50%;
	padding-block: 0.25rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

#toggle-control div:first-child {
	border-radius: 8px 0 0 8px;
}

#toggle-control div:last-child {
	border-radius: 0 8px 8px 0;
}

#toggle-control div.selected {
	background-color: var(--blue);
	color: var(--light-text);
}

#waveform-controls-container h3 {
	display: flex;
  justify-content: space-between;
}

.generator-controls {
	border: 1px solid var(--blue);
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding: 0.25rem;
	width: 50%;
	margin-bottom: 0.24rem;
}

.generator-control-row {
	display: flex;
	gap: 0.25rem;
	justify-content: center;
}

.generator-display {
	font-size: 1.5rem;
	text-align: center;
	text-transform: capitalize;
}

.pitch-control {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	width: 50%;
}

.pitch-control .label {
	text-align: center;
	text-transform: capitalize;
}

@media (max-width: 820px) {
	#toggle-control {
		height: 44px;
	}
	.pitch-control .label {
		font-size: 1.25rem;
	}
}