/* Base styles */
body {
	font-family: "Plus Jakarta Sans", "Noto Sans", sans-serif;
}

/* Step navigation */
.step {
	display: none;
}

.step.active {
	display: block;
}

/* Tag styling */
.tag-content {
	background-color: #e3f2fd;
}

.tag-style {
	background-color: #f3e5f5;
}

.tag-technical {
	background-color: #fff3e0;
}

/* Image handling */
.image-container {
	width: 100%;
	background-color: #f5f5f5;
	border-radius: 0.75rem;
	overflow: hidden;
	position: relative;
	min-height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.image-preview {
	max-width: 100%;
	max-height: 500px;
	object-fit: contain;
	display: block;
	margin: 0 auto;
}

/* Button styles */
.button {
	display: flex;
	min-width: 84px;
	max-width: 480px;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 9999px;
	height: 40px;
	padding-left: 16px;
	padding-right: 16px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 0.015em;
}

.button-primary {
	background-color: black;
}

.button-secondary {
	background-color: #6b7280;
}

/* Layout */
.layout-container {
	display: flex;
	height: 100%;
	flex-grow: 1;
	flex-direction: column;
}

.content-container {
	display: flex;
	flex-direction: column;
	max-width: 960px;
	flex: 1;
}

/* Typography */
.title {
	color: black;
	font-size: 2.25rem;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: -0.033em;
}

.subtitle {
	color: #6b6b6b;
	font-size: 1rem;
	font-weight: 400;
	line-height: normal;
}

.section-title {
	color: black;
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.description-text {
	color: black;
	font-size: 1rem;
	font-weight: 400;
	line-height: normal;
	padding-bottom: 0.75rem;
}

/* Tag component */
.tag {
	display: flex;
	height: 2rem;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: 9999px;
	background-color: #eeeeee;
	padding-left: 1rem;
	padding-right: 1rem;
}

.tag-text {
	color: black;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: normal;
}

/* Add new styles below */

/* Loading animation styles */
#loading-dots {
	display: inline-block;
	min-width: 30px;
	text-align: left;
	color: #fb2091;
	font-weight: bold;
	font-size: 1.5rem;
	line-height: 1;
	margin-left: 4px;
}

#countdown-container {
	background-color: #f8f9fa;
	border-radius: 8px;
	padding: 8px 12px;
	width: fit-content;
}

#countdown {
	color: #fb2091;
}
