.angie-services-container {
	background: #f9f9f9;
	border: 1px solid #e2e2e2;
	border-radius: 8px;
	padding: 24px;
	margin-bottom: 30px;
}

.angie-services-container h3 {
	margin-top: 0;
	margin-bottom: 20px;
}

.diamond-perks {
	background-color: #f0f7ff;
	border-left: 4px solid #0073aa;
	padding: 12px 16px;
	margin-bottom: 20px;
	border-radius: 4px;
}

.diamond-perks p {
	margin: 0;
}

.angie-services-list {
	list-style-type: none;
	padding-left: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 12px;
}

.angie-services-list li {
	background: #fff;
	border: 1px solid #ddd;
	padding: 12px 16px;
	border-radius: 4px;
	position: relative;
	padding-left: 36px;
}

.angie-services-list li::before {
	content: "✓";
	position: absolute;
	left: 12px;
	color: #4CAF50;
	font-weight: bold;
}

.angie-level-tracker, .angie-promo-section {
	background: #fff;
	border: 1px solid #e2e2e2;
	border-radius: 8px;
	padding: 24px;
	margin-top: 30px;
}

.tracker-info-icon {
	font-size: 0.8em;
	cursor: help;
	opacity: 0.7;
}
.tracker-info-icon:hover {
	opacity: 1;
}

.progress-bar-container {
	width: 100%;
	background-color: #e0e0e0;
	border-radius: 8px;
	height: 16px;
	margin: 10px 0;
	overflow: hidden;
}

.progress-bar-fill {
	height: 100%;
	background-color: #4CAF50;
	border-radius: 8px;
	transition: width 0.5s ease-in-out;
}

.progress-text {
	font-size: 0.9em;
	color: #666;
}

.upgrade-prompt {
	margin-top: 20px;
	padding: 15px;
	background-color: #fff3cd;
	border-left: 4px solid #ffc107;
	border-radius: 4px;
}

.angie-promo-section form {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.angie-promo-section input {
	flex: 1;
	min-width: 200px;
}

.promo-msg {
	width: 100%;
	margin-top: 10px;
	padding: 10px;
	border-radius: 4px;
}

.promo-msg.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.promo-msg.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.hidden { display: none; }