.audio-notes-recorder-container {
	margin-top: 8px;
	margin-bottom: 8px;
	display: inline-block;
}

.audio-recording-wrapper {
	display: flex;
	align-items: center;
	gap: 15px;
	background-color: #f9f9f9;
	border: 1px dashed #428bca;
	padding: 8px 12px;
	border-radius: 4px;
	max-width: 450px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
}

.audio-recording-wrapper.recording-active {
	border-color: #d15b47;
	background-color: #fff8f7;
}

.recording-dot {
	width: 10px;
	height: 10px;
	background-color: #d15b47;
	border-radius: 50%;
	display: inline-block;
	animation: audionotes-pulse 1s infinite alternate;
}

.audio-timer {
	font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
	font-size: 14px;
	font-weight: bold;
	color: #333;
	min-width: 45px;
}

.audio-visualizer {
	flex-grow: 1;
	height: 30px;
	background: transparent;
	border-radius: 3px;
}

.audio-record-btn {
	transition: all 0.2s ease;
}

.audio-record-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@keyframes audionotes-pulse {
	from {
		opacity: 0.3;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1.2);
	}
}
