.tagline {
	position: fixed;
	z-index: 9999;
	bottom: var(--mcd-space-md);
	right: var(--mcd-space-md);
	background: var(--mcd-red);
	color: var(--mcd-white);
	padding: 12px 24px;
	border-radius: 24px;
	font-size: 14px;
	font-weight: 600;
	box-shadow: 0 4px 16px rgba(219, 0, 7, 0.3);
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--mcd-space-lg);
	margin-bottom: var(--mcd-space-md);
}

.stat-card {
	background: var(--mcd-white);
	border-radius: 16px;
	padding: var(--mcd-space-lg);
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.stat-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--mcd-gold);
}

.stat-card:hover::before {
	background: var(--mcd-red);
}

.stat-value {
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: var(--mcd-space-sm);
}

.stat-label {
	color: var(--mcd-dark-grey);
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.stat-trend {
	position: absolute;
	top: var(--mcd-space-lg);
	right: var(--mcd-space-lg);
	color: var(--mcd-green-eu);
	font-weight: 600;
	font-size: 14px;
}

.chart-card {
	background: var(--mcd-white);
	border-radius: 16px;
	padding: var(--mcd-space-lg);
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.chart-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: var(--mcd-space-md);
}

.chart-title {
	font-size: 20px;
	font-weight: 700;
}

.user-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--mcd-red);
	color: var(--mcd-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
}

.mcd-table {
	width: 100%;
	border-collapse: collapse;
}

.mcd-table th {
	text-align: left;
	padding: var(--mcd-space-md);
	border-bottom: 2px solid var(--mcd-medium-grey);
	font-weight: 600;
	color: var(--mcd-dark-grey);
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.mcd-table td {
	padding: var(--mcd-space-md);
	border-bottom: 1px solid var(--mcd-light-grey);
}

.mcd-table tr:hover {
	background: var(--mcd-light-gold);
}

.contact-count {
	background: var(--mcd-gold);
	color: var(--mcd-black);
	padding: 4px 12px;
	border-radius: 12px;
	font-weight: 600;
	display: inline-block;
}

.contact-count-red {
	background: var(--mcd-red);
	color: var(--mcd-white);
}

.back {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-style: italic;
	color: var(--mcd-gold);
	font-weight: bold;
	width: fit-content;
	border: 1px solid var(--mcd-gold);
	padding-right: 0.5rem;
	border-radius: 0.5rem;
	margin-bottom: 0.5rem;
	transition: all 0.2s ease-in-out;

	svg {
		fill: var(--mcd-gold);
	}
}

.back-big {
	padding: 0.5rem 1rem 0.5rem 0.5rem;
}

.back-grey {
	color: var(--mcd-dark-grey);
	border: 1px solid var(--mcd-dark-grey);

	svg {
		fill: var(--mcd-dark-grey);
	}
}

.back:hover {
	background-color: var(--mcd-light-gold);
}

.total-value {
	font-weight: 700;
	line-height: 1;
	margin-bottom: var(--mcd-space-sm);
}

.total-label {
	line-height: 1;
	color: var(--mcd-dark-grey);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.table-container {
	position: relative;
}

.current-day-overlay {
	position: absolute;
	top: 0;
	border: 2px solid #dc3545;
	border-radius: 8px;
	background-color: rgba(220, 53, 69, 0.05);
	pointer-events: none;
	z-index: 1;
}

.k-stepper .k-step-label .k-step-text {
	width: 200px;
	white-space: normal;
	text-align: center;
}

.k-stepper .k-step-done .k-step-indicator {
	border-color: var(--mcd-gold) !important;
	background-color: var(--mcd-gold) !important;
}
.k-progressbar .k-selected {
	border-color: var(--mcd-gold) !important;
	background-color: var(--mcd-gold) !important;
}

.info-message {
	background: linear-gradient(135deg, var(--mcd-gold), #ffd54f);
	color: var(--mcd-black);
	padding: var(--mcd-space-md) var(--mcd-space-lg);
	border-radius: 12px;
	margin-bottom: var(--mcd-space-md);
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: var(--mcd-space-sm);
	box-shadow: 0 4px 16px rgba(255, 188, 13, 0.2);
}

.emoji {
	font-size: 24px;
}

.json-block {
	background: var(--mcd-light-gold);
	color: var(--mcd-black);
	border: 1px solid var(--mcd-gold);
	border-radius: 8px;
	padding: 12px;
	overflow: auto;
	max-height: 360px;
	white-space: pre-wrap;
	word-break: break-word;
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, 'Liberation Mono', monospace;
	font-size: 0.9rem;
	line-height: 1.3rem;
	margin: 0;
}
