@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html,
body {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
}

body {
	background-color: #dddfe2;
	box-sizing: border-box;
}

.content-wrap {
	display: flex;
	flex-direction: column;
	flex: 1;
	overflow: auto; /* Ensures content can scroll without pushing the footer */
}

footer {
	background: #4e73df;
	color: #fff;
	padding-top: 10px;
	width: 100%;
	padding-bottom: 40px;
}

.footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.footer-content h3 {
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 3rem;
}

.footer-content p {
	max-width: 500px;
	margin: 10px auto;
	line-height: 29px;
	font-size: 14px;
}

.socials {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 1rem 0 3rem 0;
	list-style: none;
}

.socials li {
	margin: 0 10px;
}

.socials a {
	color: #fff;
	text-decoration: none;
}

.socials a i {
	font-size: 1.1rem;
	transition: color 0.4s ease;
}

.socials a:hover i {
	color: aqua;
}

.footer-bottom {
	background: #390b84da;
	width: 100%;
	padding: 20px 0;
	text-align: center;
}

.footer-bottom p {
	font-size: 14px;
	word-spacing: 2px;
}

.footer-bottom span {
	text-transform: uppercase;
	opacity: 0.4;
	font-weight: 200;
}

/* .card:hover {
	transform: translateY(-5px);
} */

.carousel-indicators li {
	background-color: #333;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	filter: invert(1);
}

.hidden {
	display: none !important;
}

.chart-container {
	position: relative;
	height: 450px; /* or adjust based on your preference */
	width: 100%;
	padding: 1rem;
	background-color: #fff;
	border-radius: 0.35rem;
	box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}

.description {
	font-size: 16px;
	margin-bottom: 1rem;
	color: #555;
	text-align: justify;
}

.carousel-inner {
	height: 250px;
}

.carousel-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.btn-disabled:hover::after {
	content: attr(data-reason);
	background-color: black;
	color: white;
	padding: 5px 10px;
	border-radius: 6px;
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	z-index: 1000;
}

.success {
	color: green;
}

.error {
	color: red;
}

.container {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.row {
	display: flex;
	justify-content: center;
}

.col-md-8 {
	display: flex;
	flex-direction: column;
	align-items: center;
}
