/**
 * Public CSS for Wildy Abonnement
 */

/* Connect Wrapper */
.wootelegram-connect-wrapper {
	background: #f9f9f9;
	border: 2px solid #ddd;
	border-radius: 8px;
	padding: 20px;
	margin: 20px 0;
	max-width: 600px;
}

/* Connect Notice */
.wootelegram-connect-notice {
	background: #fff3cd;
	border: 1px solid #ffc107;
	border-radius: 4px;
	padding: 15px;
	margin: 20px 0;
	color: #856404;
}

.wootelegram-connect-notice.wootelegram-error {
	background: #f8d7da;
	border-color: #dc3545;
	color: #721c24;
}

/* Not Linked State */
.wootelegram-not-linked {
	text-align: center;
}

.wootelegram-connect-info {
	margin-bottom: 20px;
}

.wootelegram-connect-info p {
	font-size: 16px;
	margin-bottom: 15px;
	color: #333;
}

.wootelegram-steps {
	text-align: left;
	display: inline-block;
	margin: 0;
	padding-left: 20px;
}

.wootelegram-steps li {
	margin-bottom: 8px;
	font-size: 14px;
	color: #666;
}

.wootelegram-connect-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 6px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.wootelegram-connect-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.wootelegram-telegram-icon {
	font-size: 20px;
}

.wootelegram-token-expiry {
	margin-top: 10px;
	color: #666;
	font-size: 12px;
}

/* Linked State */
.wootelegram-linked {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #d4edda;
	border-color: #28a745;
}

.wootelegram-status-box {
	display: flex;
	align-items: center;
	gap: 15px;
}

.wootelegram-status-icon {
	font-size: 32px;
	line-height: 1;
}

.wootelegram-linked-icon {
	color: #28a745;
}

.wootelegram-status-text strong {
	display: block;
	font-size: 16px;
	color: #155724;
	margin-bottom: 5px;
}

.wootelegram-telegram-info {
	margin: 0;
	font-size: 14px;
	color: #155724;
	font-weight: 600;
}

.wootelegram-linked-date {
	margin: 5px 0 0 0;
	font-size: 12px;
	color: #155724;
	opacity: 0.8;
}

.wootelegram-unlink-btn {
	background: #dc3545;
	border-color: #dc3545;
	color: white;
	padding: 8px 16px;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
}

.wootelegram-unlink-btn:hover {
	background: #c82333;
	border-color: #bd2130;
	color: white;
}

/* Thank You Page Section */
.wootelegram-thankyou-section {
	background: white;
	border: 2px solid #0073aa;
	border-radius: 8px;
	padding: 25px;
	margin: 30px 0;
}

.wootelegram-thankyou-section h2 {
	margin-top: 0;
	color: #0073aa;
	font-size: 22px;
	border-bottom: 2px solid #0073aa;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

/* My Account Section */
.wootelegram-myaccount-section {
	margin: 30px 0;
}

.wootelegram-myaccount-section h2 {
	font-size: 20px;
	margin-bottom: 15px;
	color: #333;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
	.wootelegram-connect-wrapper {
		max-width: 100%;
	}

	.wootelegram-linked {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}

	.wootelegram-status-box {
		flex-direction: column;
		text-align: center;
	}

	.wootelegram-unlink-btn {
		width: 100%;
	}
}

/* Loading State */
.wootelegram-loading {
	opacity: 0.6;
	pointer-events: none;
}

/* Success Message */
.wootelegram-success-message {
	background: #d4edda;
	border: 1px solid #28a745;
	border-radius: 4px;
	padding: 15px;
	margin: 15px 0;
	color: #155724;
	text-align: center;
	font-weight: 600;
}
