.angie-app-page {
	font-family: Roboto;
	box-sizing: border-box;
	inset-inline-end: 2%;
	width: 102%;
	position: relative;
}

.angie-app-end {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	box-sizing: border-box;
	padding: 30px;
}

.angie-end-container {
	position: relative;
	width: 100%;
	height: 100%;
	min-width: 500px;
	min-height: 500px;
	background-image: url('../assets/gradient.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.angie-ask-image {
	max-width: 80%;
	max-height: 80%;
	width: auto;
	height: auto;
	object-fit: contain;
	z-index: 1;
}

.angie-toggle-container {
	display: flex;
	align-items: stretch;
	align-self: flex-start;
	gap: 8px;
}

.angie-toggle-link {
	color: #c00bb9;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 400;
	text-decoration: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
}

.angie-toggle-link:hover {
	text-decoration: underline;
}

.angie-toggle-icon {
	display: inline-block;
	width: 24px;
	height: 24px;
}


@media (max-width: 1000px) {
	.angie-app-layout {
		grid-template-columns: 1fr;
		gap: 30px;
		text-align: center;
	}

	.angie-app-start {
		min-width: 390px;
		align-items: stretch;
		text-align: left;
	}

	.angie-app-end {
		display: none;
	}
}

@media (max-width: 480px) {
	.angie-app-page {
		padding: 20px;
	}
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.angie-connect-button {
	font-family: Roboto;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 26px;
	letter-spacing: 0.46px;
	border-radius: 4px;
	background: var(--primary-main, #F0ABFC);
	color: black;
	border: none;
	padding: 8px 22px;
	cursor: pointer;
	transition: all 0.2s ease;
	align-self: flex-start;
	margin-top: 16px;
}

.angie-connect-button:hover:not(:disabled) {
	background-color: #EB8EFB;
}

.angie-connect-button:disabled {
	background: #e5e7eb;
	color: #9ca3af;
	cursor: not-allowed;
}