body {
	background-color: #22303c; /* Exact Dark Slate */
	color: #ffffff;
	font-family: 'Helvetica Neue', Arial, sans-serif;
}

.text-cyan {
	color: #49c5e0;
}

/* Navigation & Footer Specifics */
.bg-dark-custom {
	background-color: #1a2631; /* Matches the deepest background color */
}

.nav-link {
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: color 0.3s;
}

	.nav-link:hover {
		color: #49c5e0 !important;
	}

footer h5 {
	font-size: 1rem;
	font-weight: 600;
}

footer a:hover {
	color: #49c5e0 !important;
}

/* Sticky-top adjustment to ensure it doesn't overlap content shadow */
.navbar {
	box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.calculator-card, .result-card {
	background-color: #2c3e50;
	border-radius: 4px;
	border: 1px solid #3e4e5e;
}

.section-title {
	font-size: 1.1rem;
	font-weight: 400;
	text-transform: none;
	margin-bottom: 1rem;
}

/* Custom Checkbox and Radio styling */
.form-check-input:checked {
	background-color: #49c5e0;
	border-color: #49c5e0;
}

/* Buttons */
.btn-cyan {
	background-color: #2c3e50;
	color: #49c5e0;
	border: 1px solid #49c5e0;
	border-radius: 4px;
	transition: 0.2s;
}

	.btn-cyan:hover {
		background-color: #49c5e0;
		color: #22303c;
	}

/* Result visuals */
.dot-pattern {
	height: 120px;
	background-image: radial-gradient(#49c5e0 1.5px, transparent 1.5px);
	background-size: 8px 8px;
	opacity: 0.3;
}

.percentage-display {
	font-size: 2.5rem;
	font-weight: bold;
}

.warning-text {
	color: #ff4d4d;
	font-size: 0.75rem;
}

.bag-icon {
	display: inline-block;
	width: 40px;
	margin: 5px;
}
/* Enhanced Footer Visibility */
footer .text-muted {
	color: #a0acb9 !important; /* Lighter grey for better readability */
}

footer a.text-muted {
	transition: all 0.2s ease-in-out;
}

	footer a.text-muted:hover {
		color: #49c5e0 !important;
		text-decoration: underline !important;
	}

footer h5 {
	color: #ffffff; /* Pure white headers */
	border-bottom: 1px solid #3e4e5e;
	padding-bottom: 8px;
	display: inline-block;
}

/* Custom CM Slider Styling */
.custom-slider {
	height: 8px;
	background: #2c3e50;
	border-radius: 5px;
	outline: none;
}

	.custom-slider::-webkit-slider-thumb {
		-webkit-appearance: none;
		appearance: none;
		width: 18px;
		height: 18px;
		background: #49c5e0;
		cursor: pointer;
		border-radius: 50%;
		box-shadow: 0 0 10px rgba(73, 197, 224, 0.5);
	}

/* Layout for the 10x10 Probability Grid */
.dot-grid-container {
	display: grid;
	grid-template-columns: repeat(10, 1fr);
	gap: 6px;
	width: fit-content;
	margin: 20px auto;
	padding: 10px;
	background: rgba(0, 0, 0, 0.2);
	border-radius: 8px;
}

/* Individual Dot Styling */
.dot {
	width: 10px;
	height: 10px;
	background-color: #334155; /* Muted slate */
	border-radius: 50%;
	transition: background-color 0.3s, box-shadow 0.3s;
}

	.dot.active {
		background-color: #49c5e0; /* Your Cyan theme color */
		box-shadow: 0 0 8px #49c5e0;
	}

/* Litter Bag Icons */
.litter-bag {
	font-size: 2.5rem;
	display: inline-block;
	transition: transform 0.3s;
	filter: grayscale(100%) opacity(0.2); /* Greyed out by default */
}

	.litter-bag.filled {
		filter: grayscale(0%) opacity(1); /* Full color when filled */
		transform: scale(1.1);
	}

/* Text Enhancements */
.tracking-widest {
	letter-spacing: 0.15em;
}

.percentage-display {
	font-size: 2.8rem;
	text-shadow: 0 0 15px rgba(73, 197, 224, 0.3);
}

/**----------------------*/

.btn-success {
	background-color: #25D366; /* Official WhatsApp Green */
	border: none;
	transition: transform 0.2s, background-color 0.2s;
}

	.btn-success:hover {
		background-color: #128C7E; /* Darker Green */
		transform: translateY(-2px);
		box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
	}

/* Add FontAwesome for the icon if not already included */
.fa-whatsapp {
	margin-right: 8px;
	font-size: 1.2rem;
}

.animate-fade-in {
	animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.border-cyan {
	border: 1px solid #49c5e0 !important;
}

.border-opacity-25 {
	border-color: rgba(73, 197, 224, 0.25) !important;
}

/* Styling for the Refresh Icon */
.fa-refresh {
	margin-right: 5px;
}



.cat-food-icon {
	width: 50px; /* Adjust size as needed */
	height: auto;
	margin: 0 5px;
	transition: transform 0.3s ease, filter 0.3s ease;
}

	/* Empty State: Grayscale and semi-transparent */
	.cat-food-icon.empty {
		filter: grayscale(100%);
		opacity: 0.2;
	}

	/* Filled State: Full color and slightly larger */
	.cat-food-icon.filled {
		filter: grayscale(0%);
		opacity: 1;
		transform: scale(1.1);
		/* Optional: add a slight glow to match the cyan theme */
		filter: drop-shadow(0 0 5px rgba(73, 197, 224, 0.5));
	}