/* Reset CSS */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Body Style */
body {
	background-color: #f5f5f7;
	color: #1c1c1e;
}

/* Container Style */
.container {
	text-align: center;
	padding: 20px;
	background: white;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	width: 90%;
	max-width: 600px;
	margin: 20px auto;
}

/* Navbar Style */
.navbar {
	background-color: #ffffff;
	border-bottom: 1px solid #dcdcdc;
}

.navbar-brand {
	font-weight: bold;
}

.nav-link {
	color: #007aff !important;
	font-weight: 500;
}

.nav-link:hover {
	background-color: #f1f1f1;
	border-radius: 5px;
}
/* Stile del pulsante di registrazione */
#recordButton {
	background-color: red;
	color: white;
	border: none;
	border-radius: 50%;
	width: 70px;
	height: 70px;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#counter {
	font-size: 18px;
	margin-top: 10px;
	color: black;
	display: none;
}