export const appCSSContent = `
.container {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	background: #f1f1f3;
	color: #333;
	transition:
		background-color 0.3s,
		color 0.3s;
	position: relative;
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
}

.container.dark {
	background: #0c0e14;
	color: #fff;
}

.modal {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 20px 40px;
	position: sticky;
	top: 0;
	z-index: 10;
	margin-bottom: 2rem;
}

.container.dark .header {
	border-bottom: 1px solid #2f3035;
}

.logo {
	height: 30px;
	transition: opacity 0.3s;
}

.header-buttons {
	display: flex;
	gap: 16px;
}

.docs-button,
.get-started {
	padding: 10px 20px;
	border-radius: 12px;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
	font-weight: 600;
	font-size: 14px;
}

.docs-button {
	background-color: rgba(71, 121, 254, 0.1);
	color: #4779fe;
}

.container.dark .docs-button {
	border-color: #fff;
	color: #fff;
}

.get-started {
	background-color: #4779fe;
	color: #fff;
}

.get-started:hover,
.docs-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.footer {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 40px;
	margin-top: auto;
}

.footer-image {
	height: 15rem;
	width: auto;
	position: absolute;
	bottom: 0;
	right: 20px;
	max-height: 150px;
	opacity: 0.6;
}

.footer-text {
	color: #666;
	font-size: 14px;
	font-weight: 500;
	margin-left: 20px;
	opacity: 0.7;
}

.container.dark .footer-text {
	color: #ccc;
}
`
