html {
    scroll-behavior: smooth;
}
table {
	font-family: "Jost", sans-serif !important;
	border-collapse: collapse;
	width: 100%;
	color: black;
	letter-spacing: 1px;
}
td, th {
	border: 1px solid #000000;
	text-align: left;
	padding: 8px;
}
tr:nth-child(even) {
	background-color: #dddddd;
}
/* Floating Contact Buttons CSS */
.contact-buttons {
	position: fixed;
	bottom: 20px;
	left: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 1000;
}
.contact-buttons a {
	color: white;
	font-size: 15px;
	padding: 10px 10px;
	border-radius: 50px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
	text-align: center;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	width: 125px;
	text-decoration: none;
	transition: transform 0.3s ease;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
}
.contact-buttons a.call-button {
	background-color: #eb1111;
}
.contact-buttons a.whatsapp-button {
	background-color: #25b03b;
}
.contact-buttons a i {
	margin-right: 10px;
}
.contact-buttons a:hover {
	transform: scale(0.95);
}
/* Scroll to Top Button */
#scrollUp {
	position: fixed;
	bottom: 10px;
	right: 10px;
	background-color: #403b3b;
	color: white;
	font-size: 24px;
	padding: 10px;
	border-radius: 0%;
	display: none;
	cursor: pointer;
	width: 40px;
	height: 40px;
	line-height: 5px;
	z-index: 99999;
}
@media (max-width: 768px) {
	.contact-buttons {
		width: 100%;
		margin: 0;
		padding: 0;
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 99;
		display: block;
	}
	.contact-buttons a {
		min-width: auto;
        padding: 10px 12px;
        font-size: 14px;
        float: left;
        width: 50%;
        overflow: hidden;
        text-align: center;
        border-radius: 0;
	}
	#scrollUp {
		position: fixed;
		bottom: 0px;
		right: 0px;
		background-color: #403b3b;
		color: white;
		font-size: 24px;
		padding: 10px;
		display: none;
		cursor: pointer;
		width: 40px;
		height: 40px;
		line-height: 10px;
		z-index: 99999;
		border-radius: 0%;
	}
}
