/* Bored Developers Content */
.bored-content {
	max-width: 1000px;
	margin: 0 auto;
}

.api-section {
	background-color: var(--card-bg);
	border-radius: 0.75rem;
	padding: 2rem;
	box-shadow: var(--shadow);
	border: 1px solid var(--border-color);
	margin-bottom: 2rem;
}

.api-header {
	margin-bottom: 1.5rem;
	text-align: center;
}

.api-header h2 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.api-header p {
	font-size: 1rem;
	color: var(--text-secondary);
	margin-bottom: 0;
}

.api-output {
	min-height: 120px;
	background-color: var(--bg-secondary);
	border-radius: 0.5rem;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px dashed var(--border-color);
}

.api-output .placeholder {
	color: var(--text-tertiary);
	font-style: italic;
}

.api-output-content {
	width: 100%;
}

.api-button {
	display: block;
	width: 100%;
	padding: 0.75rem;
	background-color: var(--accent-color);
	color: white;
	border: none;
	border-radius: 0.5rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.api-button:hover {
	background-color: var(--accent-color-hover);
}

/* API-specific output styles */
.activity {
	font-size: 1.2rem;
	text-align: center;
	color: var(--text-primary);
}

.dog-image {
	max-width: 100%;
	max-height: 300px;
	border-radius: 0.5rem;
	margin: 0 auto;
	display: block;
}

.joke {
	font-size: 1.1rem;
	text-align: center;
	color: var(--text-primary);
}

.joke-setup {
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.joke-punchline {
	font-style: italic;
}

.cat-fact {
	font-size: 1.1rem;
	text-align: center;
	color: var(--text-primary);
}

/* Loading state */
.loading {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid rgba(255, 255, 255, .3);
	border-radius: 50%;
	border-top-color: var(--accent-color);
	animation: spin 1s ease-in-out infinite;
	margin-right: 8px;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.api-section {
		padding: 1.5rem;
	}

	.api-output {
		min-height: 100px;
		padding: 1rem;
	}
}