body {
	font-family: Arial, sans-serif;
	background-color: #f2f2f2;
}

h1 {
	text-align: center;
	color: #333;
}

#btn-record {
	padding: 10px 20px;
	font-size: 1.2em;
	background-color: #4CAF50;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.2s;
}

#btn-record:hover {
	background-color: #3e8e41;
}

#btn-translate {
	padding: 10px 20px;
	font-size: 1.2em;
	background-color: #008CBA;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.2s;
}

#btn-translate:hover {
	background-color: #006F8A;
}

#btn-delete {
	padding: 10px 20px;
	font-size: 1.2em;
	background-color: #f44336;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.2s;
}

#btn-delete:hover {
	background-color: #d32f2f;
}

#output-text {
	width: 100%;
	height: 300px;
	padding: 10px;
	font-size: 1.2em;
	border: 1px solid #ccc;
	border-radius: 5px;
	resize: none;
	transition: border-color 0.2s, box-shadow 0.2s;
}

#output-text:focus {
	border-color: #4CAF50;
	box-shadow: 0 0 5px #4CAF50;
}

#translation-heading {
	text-align: center;
	font-size: 1.2em;
	margin-top: 20px;
	color: #333;
}

#translation-text {
	width: 100%;
	height: 300px;
	padding: 10px;
	font-size: 1.2em;
	border: 1px solid #ccc;
	border-radius: 5px;
	resize: none;
	transition: border-color 0.2s, box-shadow 0.2s;
	margin-bottom: 20px;
}

#translation-text:focus {
	border-color: #008CBA;
	box-shadow: 0 0 5px #008CBA;
}
