/* Контейнер панели */
.standart-voice-recorder-status-panel {
	position: fixed;
	inset: 0;
	z-index: 60;

	display: flex;
	align-items: center;
	justify-content: center;

	background: rgba(17, 24, 39, 0.95);
	backdrop-filter: blur(12px);

	animation: fadeIn 0.3s ease-out;
}

/* Скрытие */
.standart-voice-recorder-status-panel.d-none {
	display: none;
}

/* Внутренний контейнер */
.standart-voice-recorder-status-panel .voice-recorder-status {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #ffffff;
}

/* Заголовок */
.standart-voice-recorder-status-panel .voice-recorder-status__title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 3rem;
	letter-spacing: 0.05em;

	animation: pulse 1.5s infinite;
}

/* Блок кнопки */
.standart-voice-recorder-status-panel .voice-recorder-status__control {
	position: relative;
}

/* Основная кнопка */
.standart-voice-recorder-status-panel .voice-recorder-status__button {
	position: relative;
	width: 96px;
	height: 96px;

	background: #ef4444;
	border-radius: 50%;
	border: none;
	cursor: pointer;

	display: flex;
	align-items: center;
	justify-content: center;

	box-shadow: 0 0 50px rgba(239, 68, 68, 0.5);
	transition: transform 0.3s ease;
}

.standart-voice-recorder-status-panel .voice-recorder-status__button:hover {
	transform: scale(1.05);
}

.standart-voice-recorder-status-panel .voice-recorder-status__button:active {
	transform: scale(0.95);
}

/* Иконка стопа */
.standart-voice-recorder-status-panel .voice-recorder-status__icon {
	width: 32px;
	height: 32px;
	background: #ffffff;
	border-radius: 4px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Пульсирующие круги */
.standart-voice-recorder-status-panel .voice-recorder-status__pulse {
	position: absolute;
	inset: 0;
	background: #ef4444;
	border-radius: 50%;
	opacity: 0.2;

	animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.standart-voice-recorder-status-panel .voice-recorder-status__pulse-secondary {
	position: absolute;
	inset: -20px;
	background: #ef4444;
	border-radius: 50%;
	opacity: 0.1;

	animation: pulse 2s infinite;
}

/* Подсказка */
.standart-voice-recorder-status-panel .voice-recorder-status__hint {
	margin-top: 3rem;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: #9ca3af;
	opacity: 0.6;
}

/* Анимации */
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes pulse {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

@keyframes ping {
	0% {
		transform: scale(1);
		opacity: 0.4;
	}
	75%, 100% {
		transform: scale(2);
		opacity: 0;
	}
}

/* Обертка кнопки */
.standart-voice-recorder-status-panel .voice-recorder-status__button-holder {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Убираем влияние inline-элемента <a> */
.standart-voice-recorder-status-panel .voice-recorder-status__button {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

/* Убираем возможные артефакты ссылок */
.standart-voice-recorder-status-panel .voice-recorder-status__button:focus {
	outline: none;
}

.standart-voice-recorder-status-panel .voice-recorder-status__button:active,
.standart-voice-recorder-status-panel .voice-recorder-status__button:hover {
	text-decoration: none;
}



/* Внутренний контейнер */
.standart-voice-recorder-status-panel .voice-processing-status {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #ffffff;
}

/* Заголовок */
.standart-voice-recorder-status-panel .voice-processing-status__title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 3rem;
	letter-spacing: 0.05em;

	animation: pulse 1.5s infinite;
}

/* Блок загрузки */
.standart-voice-recorder-status-panel .voice-processing-status__loader {
	position: relative;
	width: 96px;
	height: 96px;

	display: flex;
	align-items: center;
	justify-content: center;
}

/* Спиннер */
.standart-voice-recorder-status-panel .voice-processing-status__spinner {
	width: 64px;
	height: 64px;
	border-radius: 50%;

	border: 6px solid rgba(239, 68, 68, 0.2);
	border-top-color: #ef4444;

	animation: spin 1s linear infinite;
	box-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
}

/* Подсказка */
.standart-voice-recorder-status-panel .voice-processing-status__hint {
	margin-top: 3rem;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: #9ca3af;
	opacity: 0.6;
}

/* Анимация вращения */
@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}