/**
 * Public Styles for Local Business SEO Booster
 */

.lbsb-business-info {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 2rem;
	max-width: 100%;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.lbsb-business-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid #f0f0f0;
}

.lbsb-logo {
	max-width: 80px;
	height: auto;
	border-radius: 4px;
}

.lbsb-business-name {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 600;
	color: #333;
}

.lbsb-business-details > div {
	margin-bottom: 1.25rem;
}

.lbsb-business-details > div:last-child {
	margin-bottom: 0;
}

.lbsb-business-details strong {
	display: block;
	margin-bottom: 0.25rem;
	color: #666;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.lbsb-business-details p {
	margin: 0;
	line-height: 1.6;
	color: #333;
}

.lbsb-business-details a {
	color: #0073aa;
	text-decoration: none;
	transition: color 0.2s ease;
}

.lbsb-business-details a:hover {
	color: #005177;
	text-decoration: underline;
}

.lbsb-hours-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lbsb-hours-list li {
	display: flex;
	justify-content: space-between;
	padding: 0.5rem 0;
	border-bottom: 1px solid #f0f0f0;
}

.lbsb-hours-list li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.lbsb-day {
	font-weight: 500;
	color: #333;
	min-width: 100px;
}

.lbsb-time {
	color: #666;
	text-align: right;
}

.lbsb-map {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 2px solid #f0f0f0;
}

.lbsb-map iframe {
	border-radius: 4px;
	display: block;
	width: 100%;
}

.lbsb-map-note {
	margin-top: 0.5rem;
	font-size: 0.75rem;
	color: #999;
	font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
	.lbsb-business-info {
		padding: 1.5rem;
	}

	.lbsb-business-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.lbsb-business-name {
		font-size: 1.25rem;
	}

	.lbsb-hours-list li {
		flex-direction: column;
		gap: 0.25rem;
	}

	.lbsb-day,
	.lbsb-time {
		text-align: left;
	}
}

@media (max-width: 480px) {
	.lbsb-business-info {
		padding: 1rem;
	}

	.lbsb-logo {
		max-width: 60px;
	}
}
