body {
	font-family: Arial, sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	margin: 0;
	background-color: #f0f2f5;
	flex-direction: column;
}

.container {
	text-align: center;
	background-color: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

.record-btn {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: #ff4444;
	border: none;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px auto;
	transition: all 0.3s ease;
}

.record-btn:hover {
	transform: scale(1.1);
}

.record-btn.recording {
	animation: pulse 1.5s infinite;
}

.mic-icon {
	width: 30px;
	height: 30px;
	fill: white;
}

.status {
	margin-top: 20px;
	color: #666;
}

.timer {
	font-size: 1.2rem;
	margin-top: 10px;
	color: #333;
}

.controls {
	/* display: none; */
	margin-top: 20px;
	gap: 10px;
}

.controls.active {
	display: flex;
	justify-content: center;
}

.control-btn {
	padding: 8px 16px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 14px;
	transition: background-color 0.3s;
}

.send-btn {
	background-color: #4caf50;
	color: white;
}

.cancel-btn {
	background-color: #f44336;
	color: white;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7);
	}

	70% {
		transform: scale(1.1);
		box-shadow: 0 0 0 10px rgba(255, 68, 68, 0);
	}

	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(255, 68, 68, 0);
	}
}

.container-result {
	max-width: 600px;
    width: 300px;
	margin: 50px auto;
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
    opacity: 0;
}

/* Tiêu đề của danh sách */
h2 {
	text-align: center;
	color: #333;
}

/* Định dạng cho danh sách */
.result-list {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

/* Định dạng cho từng mục trong danh sách */
.result-item {
	background-color: #e1e1e1;
	padding: 10px;
	margin-bottom: 10px;
	border-radius: 5px;
	font-size: 16px;
	color: #333;
	transition: background-color 0.3s;
}

/* Thêm hiệu ứng hover cho các mục */
.result-item:hover {
	background-color: #b0b0b0;
	cursor: pointer;
}

.container-result-phone {
	max-width: 600px;
    width: 300px;
	margin: 50px auto;
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
}