/**
 * AI Read Summarizer Frontend CSS
 * Exact visual match to modern pill UI design
 */

.airs-container {
	margin: 28px 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	box-sizing: border-box;
}

.airs-container * {
	box-sizing: border-box;
}

.airs-title {
	font-size: 16px;
	font-weight: 600;
	color: #374151;
	margin: 0 0 14px 0;
	padding: 0;
	line-height: 1.4;
	letter-spacing: -0.01em;
}

.airs-buttons-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 12px;
}

.airs-pill-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 8px 18px;
	background-color: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 9999px;
	color: #374151;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none !important;
	line-height: 1.4;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.02);
	cursor: pointer;
	white-space: nowrap;
	-webkit-tap-highlight-color: transparent;
}

.airs-pill-btn:hover {
	background-color: #f9fafb;
	border-color: #d1d5db;
	color: #111827;
	transform: translateY(-1px);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.airs-pill-btn:active {
	transform: translateY(0);
	background-color: #f3f4f6;
	box-shadow: none;
}

.airs-pill-btn:focus-visible {
	outline: 2px solid #2563eb;
	outline-offset: 2px;
}

.airs-icon {
	display: inline-block;
	vertical-align: middle;
	flex-shrink: 0;
	width: 18px;
	height: 18px;
}

/* Service-specific icon tweaks if required */
.airs-icon-chatgpt {
	color: #000000;
}

.airs-icon-grok {
	color: #000000;
}

/* Responsive adjustment */
@media (max-width: 640px) {
	.airs-buttons-wrapper {
		gap: 8px 10px;
	}
	
	.airs-pill-btn {
		padding: 7px 14px;
		font-size: 13.5px;
	}
}
