@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600&family=Open+Sans:wght@300;400;500&family=Tilt+Neon&display=swap');

/* colors */
:root {
	--main-bg-color: #48cae4;
	--second-bg-color: #000000;
	--third-bg-color: #2b2d42;
	--fourth-bg-color: #caf0f8;
	--main-text-color: #000000;
	--second-text-color: #ffffff;
}
* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
body {
	background: #effdff;
}
.fnt1{
	font-family: 'Open Sans', sans-serif !important;
}
.fnt2{
	font-family: 'Golos Text', sans-serif !important;
}
.section-padding {
	padding: 50px 0;
}

/* navbar */
.navbar,
.sd_bar {
	background-color: var(--main-bg-color) !important;
	font-family: 'Tilt Neon', sans-serif !important;
	border-radius: 0 0 10px 10px;
	border-bottom: 3px solid var(--main-text-color);
	-webkit-box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.9);
	-moz-box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.9);
	box-shadow: 0px 2px 2px 1px rgba(208, 207, 207, 0.9) !important;
}

.navbar-nav a,
.sd_bar a,
.user-list .list-group a {
	font-size: 18px !important;
	text-transform: uppercase;
}

.navbar-brand {
	color: var(--main-text-color);
	font-size: 25px;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 2px;
	margin-right: 45px;
}

.navbar-brand:focus,
.navbar-brand:hover {
	color: #000;
}

.navbar ul li a,
.user-list .list-group a {
	transition: all .5s ease;
	padding: 0.3em 0.8em;
	color: var(--main-text-color);
	line-height: 1.5em;
	margin: 0 12px 5px 0;
	text-align: center;
	-webkit-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.navbar ul li a:hover,
.sd_bar a:hover,
.user-list .list-group a:hover {
	background-color: var(--third-bg-color) !important;
	border-radius: 5px !important;
	color: var(--second-text-color);
	text-decoration: none;
	-webkit-transform: translateY(-1px);
	transform: translateY(-1px);
	box-shadow: 0px 1px 1px 1px #caf0f8 !important;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show{
	background-color: var(--second-bg-color);
	color: var(--second-text-color);
}
.section-adjust {
	padding-top: calc(35px + 3rem);
}
/* navbar */

/* buttons */
.custom_btn {
	transition: all .5s ease;
	background-color: var(--main-bg-color) !important;
	font-family: 'Tilt Neon', sans-serif;
	border: 1px solid var(--second-text-color);
	font-size: 18px;
	border-radius: 5px;
	color: var(--second-text-color);
	box-shadow: #fbf4d7 0px 1px 1px, #fbf4d7 0px 1px 1px;
}

.custom_btn1 {
	transition: all .5s ease;
	background: linear-gradient(to right, #1a202c, #344f55);
	font-family: 'Tilt Neon', sans-serif;
	border: 1px solid var(--second-text-color) !important;
	font-size: 18px;
	border-radius: 5px;
	color: var(--second-text-color);
	box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.custom_btn:hover {
	background-color: var(--third-bg-color) !important;
	border: 1px solid var(--second-text-color) !important;
	border-radius: 5px !important;
	color: var(--second-text-color);
}
.custom_btn:focus {
	background-color: var(--third-bg-color) !important;
	border: 1px solid var(--second-text-color) !important;
	border-radius: 5px !important;
	color: var(--second-text-color);
}

.custom_btn1:hover {
	background: linear-gradient(to right, #2d3748, #1a202c);
	border: 1px solid var(--second-text-color) !important;
	color: var(--second-text-color);
	border-radius: 5px !important;
}

.accordion-button:hover{
	background-color: var(--main-bg-color) !important;
	color: var(--main-text-color);
	border-radius: 5px !important;
}

/* buttons end */

/* footer */
footer{
	position: fixed;
	margin: 0 auto;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--main-bg-color) !important;
	font-family: 'Tilt Neon', sans-serif !important;
}
.social-icon {
	display: inline-block;
	width: 35px;
	height: 35px;
	margin: 0 0.3rem;
	color: #000;
	transition: all 0.3s ease;
}

.social-icon:hover {
	color: #ffffff;
	transform: translateY(-2px);
}

.social-icon i {
	font-size: 1.5rem;
}
/* end footer */
/* sections */
.about p {
	/*text-indent: 1rem;*/
	text-align: justify;
}
/* cards. contact section */
.contact{
	margin-bottom: 70px;
}
.contact .card, .features .card{
	background-color: var(--fourth-bg-color) !important;
}
.contact .card:hover,
.features .card:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.contact .card-img-top {
	transition: all 0.3s ease;
}

.contact .card:hover .card-img-top {
	transform: scale(1.1);
}
/* cards. contact section */
/* form */
.frm {
	background-color: var(--main-bg-color);
	font-family: 'Tilt Neon', sans-serif;
	font-weight: 400;
	padding: 0px;
	border-radius: 5px;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.frm form, .non_frm {
	padding: 5px 16px 16px 16px;
}
.form_head{
	background-color: var(--second-bg-color);
	color: var(--second-text-color);
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
}
.form_head h5{
	padding-top: 8px;
	padding-bottom: 8px;
}
.req {
	position: relative;
}

.req::after {
	content: '*';
	position: absolute;
	top: 8px;
	right: 3px;
	color: #f00
}

.form-group input {
	border-radius: 5px !important;
	border: 1px solid var(--main-text-color);
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	height: 35px;
}
.form-group input[type=number] {
	margin-top: 8px;
	height: 40px;
}

.form-group select {
	border-radius: 5px !important;
	border: 1px solid var(--main-text-color);
	height: 35px;
}
.form-group textarea {
	border-radius: 5px !important;
	border: 1px solid var(--main-text-color);
}

.form-control {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background-color: rgb(244, 244, 244);
}

.form-control:focus,
.form-select:focus {
	box-shadow: inset 0 -1px 0 var(--main-text-color);
}

.form-select {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px
}
textarea:focus:invalid,
textarea:focus,
select:focus:invalid,
select:focus,
input:focus,
input:focus:invalid,
.accordion-button:focus {
	box-shadow: none !important;
	outline: none !important;
	border-color: var(--main-text-color) !important;
}
/* end-form */

/* dashboard */

.rounded-full {
	border-radius: 100%;
}

#wrapper {
	overflow-x: hidden;
}

#sidebar-wrapper {
	min-height: 100vh;
	margin-left: -15rem;
	background-color: var(--main-bg-color);
	font-family: 'Mukta', sans-serif;
	font-size: 20px;
	font-weight: 500;
	-webkit-transition: margin 0.25s ease-out;
	-moz-transition: margin 0.25s ease-out;
	-o-transition: margin 0.25s ease-out;
	transition: margin 0.25s ease-out;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
	/* letter-spacing: 1.5px; */
}

#sidebar-wrapper .sidebar-heading {
	background-color: #000000;
	color: var(--main-bg-color);
	padding: 0.875rem 1.25rem;
	font-size: 1.2rem;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.navbar{
	background-color: var(--main-bg-color) !important;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

#sidebar-wrapper .list-group {
	width: 15rem;
}
#sidebar-wrapper .list-group a {
	padding: 12px 25px !important;
}
#sidebar-wrapper .list-group .list-group-item {
	background-color: transparent;
}

#sidebar-wrapper .list-group .list-group-item:hover {
	background-color: black;
	color: white !important;
}

#page-content-wrapper {
	min-width: 100vw;
}

#wrapper.toggled #sidebar-wrapper {
	margin-left: 0;
}

#menu-toggle {
	cursor: pointer;
}

.list-group-item {
	border: none;
	padding: 12px 35px;
}

@media (min-width: 768px) {
	#sidebar-wrapper {
		margin-left: 0;
	}
	#page-content-wrapper {
		min-width: 0;
		width: 100%;
	}

	#wrapper.toggled #sidebar-wrapper {
		margin-left: -15rem;
	}
}
@media (max-width: 767px) {
    .reg-row {
        margin-bottom: 110px !important;
    }
	.phone-p{
		margin-top: 8px !important;
	}
}
/* rooms table */
#rooms_table{
	border: 2px solid var(--main-text-color);
	border-radius: 5px !important;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
#rooms_table thead{
	font-size: 18px !important;
}
.trap_badge:hover {
	text-decoration: underline !important;
}
/* rooms table */
/* datatables */
label .form-select, label .form-control{
	display: inline !important;
	width: fit-content !important;
	margin-bottom: 5px;
}
.dataTables_empty{
	display: none;
}

#roomsTable_info, #ticketsAdminTable_info, #ticketsAdminTable_paginate, #ticketsAdminTable_length{
	display: none !important;
}
.ticketsAdminTable, .roomsTable, .trapsTable{
	width: 100% !important;
}
.dataTables_filter{
	display: flex;
	justify-content: flex-end;
}
#customersTable_filter, #customersTable_paginate, 
#companiesTable_filter, #companiesTable_paginate, 
#sitesTable_filter, #sitesTable_paginate, 
#ticketsTable_filter, #ticketsTable_paginate, 
#ticketsAdminTable_filter, #ticketsAdminTable_paginate, 
#roomsTable_filter, #roomsTable_paginate,
#infoTable_filter, #infoTable_paginate,
#trapsTable_filter, #trapsTable_paginate{
	float: right;
}
#customersTable_paginate ul li .page-link, 
#companiesTable_paginate ul li .page-link,
#sitesTable_paginate ul li .page-link,
#ticketsTable_paginate ul li .page-link,
#ticketsAdminTable_paginate ul li .page-link,
#roomsTable_paginate ul li .page-link,
#infoTable_paginate ul li .page-link,
#trapsTable_paginate ul li .page-link{
	background-color: var(--second-bg-color) !important;
	border: 1px solid var(--second-text-color) !important;
	font-size: 18px;
	border-radius: 10px;
	color: rgb(255, 255, 255);
	margin: 1px;
}
#customersTable_paginate ul li .page-link:hover, 
#companiesTable_paginate ul li .page-link:hover, 
#sitesTable_paginate ul li .page-link:hover, 
#ticketsTable_paginate ul li .page-link:hover, 
#ticketsAdminTable_paginate ul li .page-link:hover, 
#roomsTable_paginate ul li .page-link:hover,
#infoTable_paginate ul li .page-link:hover,
#trapsTable_paginate ul li .page-link:hover {
	background-color: #2f2f2f !important;
	border: 1px solid var(--second-text-color) !important;
	color: var(--second-text-color);
}
.action_td{
	inline-size: 150px;
	overflow-wrap: break-word !important;
}
/* hero section */
section{
	margin: 20px 20px 20px 20px;
}
section.hero{
	margin-top: 80px;
}
/* contact form */
p.error{
	background-color: #f8d7da !important;
	color: #000000 !important;
	border-radius: 5px;
}
p.success{
	background-color: #198754 !important;
	color: #ffffff !important;
	border-radius: 5px;
}
p.please-wait{
	background-color: #0dcaf0 !important;
	color: #000000 !important;
	border-radius: 5px;
	margin-top: 5px;
}
/* chat */
.chat-container {
	height: 80vh;
	display: flex;
	flex-direction: column;
	border-radius: 5px;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16), 0px 3px 6px rgba(0, 0, 0, 0.23);
}

.chat-header {
	background-color: var(--main-bg-color);
	padding: 10px;
	text-align: center;
	border-radius: 5px 5px 0 0;
}

.chat-content {
	flex-grow: 1;
	overflow-y: hidden;
	padding: 10px;
	display: flex;
}

.chat-window,
.user-list {
	overflow-y: auto;
}

.chat-window {
	flex-grow: 1;
	border-right: 2px solid #676666;
	padding-right: 10px;
}

.user-list {
	width: 250px;
	padding-left: 10px;
}

.user-list .list-group a {
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.user-list .list-group a:focus {
	background-color: var(--main-bg-color);
	color: white;
}

.chat-input {
	padding: 10px;
	background-color: var(--main-bg-color);
	border-radius: 0 0 5px 5px;
}

.chat-message {
	display: inline-block;
	position: relative;
	border-radius: 10px;
	margin: 10px;
	padding: 15px;
	max-width: 80%;
	clear: both;
	font-size: 16px;
	line-height: 1.4;
	word-wrap: break-word;
}

.chat-message::before {
	content: "";
	position: absolute;
	width: 20px;
	height: 40px;
	background: transparent;
	bottom: -10px;
}

.chat-message.sender {
	float: right;
	background-color: var(--main-text-color);
	color: #fff;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.chat-message.receiver {
	float: left;
	background-color: var(--main-bg-color);
	color: #333;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.chat-message.sender::before {
	border-top-right-radius: 20px;
	transform: translate(10px, -10px);
}

.chat-message.receiver::before {
	border-top-left-radius: 20px;
	transform: translate(-10px, -10px);
}

.unseen-indicator {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: red;
	margin: 10px 0 0 5px;
}

.chat-message-body {
	margin-left: 15px;
}

.chat-message-timestamp {
	font-size: 11px;
	margin-top: 5px;
}

.you-background {
	background-color: #007bff;
	color: #fff;
	padding: 2px 5px;
	border-radius: 5px;
}

.receiver-background {
	background-color: #000000;
	color: #fff;
	padding: 2px 5px;
	border-radius: 5px;
}
.sender-sp{
	color: #616060;
}
.receiver-sp{
	color: #a8a7a7;
}
/* unseen count->messages*/
#unseen .unseen-count, #unseen .unseen-count-messages {
	background-color: red;
	color: white;
	border-radius: 50%;
	font-size: 11px;
	position: absolute;
	top: -6px;
	right: 0;
	left: 15px;
	padding: 0;
	width: 18px;
	height: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#unseen .unseen-count:empty, #unseen .unseen-count-messages:empty {
	display: none;
}

.remove-chat-btn{
	padding: 2px !important;
}
/* seen indicator for each chat */
.chat-message.sender.seen:after {
	content: "\2713\2713";
	display: block;
	font-size: 14px;
	color: #5061ff;
	margin-top: 10px;
	font-weight: bold;
}

.chat-message.sender.not-seen:after {
	content: "\2713";
	display: block;
	font-size: 14px;
	color: #5061ff;
	margin-top: 10px;
}
.chat-message.receiver.seen:after {
	content: "\2713\2713";
	display: block;
	font-size: 14px;
	color: #000000;
	margin-top: 10px;
	font-weight: bold;
}

.chat-message.receiver.not-seen:after {
	content: "\2713";
	display: block;
	font-size: 14px;
	color: #000000;
	margin-top: 10px;
}

.drp-chat {
	max-height: 230px;
	/* set a maximum height for the dropdown menu */
	overflow-y: auto;
	/* enable vertical scrolling */
}
.scrollable {
	overflow-y: auto;
}
/* statistics cards */
.st-card .card {
	border-radius: 0.5rem;
}

.st-card .card-title {
	font-size: 1rem;
}

.st-card .card-text {
	font-size: 1rem;
	font-weight: bold;
}

.st-card .show-more {
	font-size: 1rem;
	text-decoration: underline;
	cursor: pointer;
}

.st-card .list-group-item {
	font-size: 1rem;
	font-weight: bold;
}

/* main page->main text */
/* Style the background color and text color of the hero section */
.hero {
	position: relative;
	height: 85vh;
	/* adjust as needed */
	background: linear-gradient(to bottom, #caf0f8, #48cae4);
	overflow: hidden;
	border-radius: 0 0 20% 20%/0 0 10% 10%;
}

.hero::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.1) 90%, rgba(255, 255, 255, 0) 100%);
	transform: rotate(45deg);
	animation: pulse 6s ease-in-out infinite;
	border-radius: 50%;
	/* add rounded shape */
}
/* manager dashboard */
/* .manager-dashboard .top{
	height: 62vh;
	overflow-y: scroll;
	padding: 1rem;
	margin-bottom: 5px;
	background-color: var(--main-bg-color);
	border-radius: 0.5rem;
	box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.15);
}
.manager-dashboard .bottom{
	height: 16vh;
	padding: 0.5rem;
	background-color: #fff;
	border-radius: 0.5rem;
	box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.15);
} */
/* battery + alive badges */
.bt-badge1{
	background-color: green;
	padding: 6px;
	height: 25px;
	width: 25px;
	border-radius: 50%;
	border: 1px solid white;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	display: inline-block;
}
.bt-badge2{
	background-color: #FFBF00;
	padding: 6px;
	height: 25px;
	width: 25px;
	border-radius: 50%;
	border: 1px solid white;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	display: inline-block;
}
.bt-badge3{
	background-color: #FF6347;
	padding: 6px;
	height: 25px;
	width: 25px;
	border-radius: 50%;
	border: 1px solid white;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	display: inline-block;
}
.bt-td{
	text-align: center;
}
/* recaptcha */
.grecaptcha-badge{
	margin-bottom: 40px !important;
}
/* date picker */
.input-group-text {
	height: 2.2rem !important;
	background-color: #0d6efd;
	border: 1px solid black;
}
.input-group-text i{
	color: #ffffff;
}
#datepicker_from, #datepicker_from1, #datepicker_to,
#datepicker_to1, #file_type, #file_type1{
	border-top-left-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
}
/* show/hide password */
.password-toggle-container {
	position: relative;
}

.password-toggle {
	position: absolute;
	top: 50%;
	right: 17px;
	transform: translateY(-50%);
	cursor: pointer;
	z-index: 1;
}


/* Add this CSS to hide the search-hidden cards in the modal */
#show_trap .search-hidden {
  display: none;
}
/* ibug-text */
#ibug-text{
	text-decoration: none !important;
	color: white !important;
}
 /* state color */

 .badge-green {
 	background-color: rgb(4, 162, 4) !important;
 	color: white;
 	padding: 5px;
 	font-size: 14px;
 	font-weight: bold;
 }

 .badge-red {
 	background-color: red !important;
 	color: white;
 	padding: 5px;
 	font-size: 14px;
 	font-weight: bold;
 }

 .badge-amber {
 	background-color: #FFBF00 !important;
 	color: white;
 	padding: 5px;
 	font-size: 14px;
 	font-weight: bold;
 }
 /* trapCheckbox */
 .trapCheckbox{
	margin-left: 10px;
 }
 .trap_badge{
	margin-left: 2px;
 }
 /* swal-title */
 .swal-title{
	font-size: 20px;;
 }

 /* tickets */
.chat-container-t {
	max-height: calc(55vh - 30px);
	overflow-y: auto;
	overflow-x: hidden;
	white-space: nowrap;
	box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.16), 0px 1px 1px rgba(0, 0, 0, 0.23);
	margin-bottom: 10px;
}
.message-wrap {
	white-space: normal !important;
}
.message-container {
	margin-bottom: 5px;
	box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1), 0px 1px 1px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.3s ease;
}
.message {
	word-wrap: break-word !important;
	overflow-wrap: break-word !important;
}
.message-container:hover {
	box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1), 0px 2px 3px rgba(0, 0, 0, 0.08);
}

/* Styling for admin messages */
.message-container.admin,
.message.admin {
	background-color: #dfdfdf;
	border-radius: 10px;
	margin: 10px;
}

.message.admin {
	padding-top: 10px;
	max-width: 100%;
}

.message-sender {
	font-weight: bold;
	margin: 5px 0 0 5px;
}

.message-timestamp {
	font-size: 0.8rem;
	color: #888;
	margin-top: 5px;
}

/* Styling for user messages */
.message-container.user,
.message.user {
	background-color: #f6f6f6;
	color: #000000;
	border-radius: 10px;
	margin: 10px;
}

.message.user {
	padding-top: 10px;
	border-radius: 10px;
	max-width: 100%;
}
.constant-size1 {
	width: 140px;
	text-align: center !important;
}
.constant-size2 {
	width: 100px;
}
/* ticket dropdown */
.ticket-drp {
	min-height: 306px !important;
}
ul li .ticket-item:hover{
	border-radius: 0 !important;
	box-shadow: none !important;
	-webkit-transform: none !important;
	transform: none !important;
	color: rgb(0, 0, 0) !important;
}
.ac-btn, .ac-i, .ac-h {
	border-radius: 5px !important;
	transition: box-shadow 0.3s ease-in-out !important;
}

.ac-btn:hover {
	background-color: rgb(78, 224, 253) !important;
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}
.tbl-no-wrap {
	white-space: nowrap;
}

/* --- Styles specifically for site-overview.php --- */

/* This class should be added to the main container div in site-overview.php */
.site-overview-page {
    color: #282828;
    font-family: "Segoe UI", Arial, sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Hide original scrollbar */
}

.site-overview-page .sticky-header {
    position: sticky;
    top: 0;
    padding-left: 10px;
    background-color: #282828;
    font-family: "Segoe UI", Arial, sans-serif;
}

.site-overview-page .form-container {
    display: flex;
    justify-content: flex-start;
    background-color: #282828;
    padding: 10px;
}

.site-overview-page .form-container label {
    margin-right: 10px;
    color: white;
    font-family: "Segoe UI", Arial, sans-serif;
}

.site-overview-page .form-container input {
    margin-right: 10px;
    margin-bottom: 10px;
    color: white;
    background-color: #282828;
    border: 1px solid white;
}

.site-overview-page .form-container button {
    margin-left: 10px;
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #282828;
    color: white;
    border: none;
}

.site-overview-page th {
    font-weight: normal;
    font-size: 12px;
    padding-right: 5px;
    padding-left: 5px;
}

.site-overview-page td {
    font-size: 14px;
}

.site-overview-page th.trap-id {
    font-weight: normal;
    font-size: 14px;
}

.site-overview-page th.room-number {
    font-weight: normal;
    font-size: 14px;
}

.site-overview-page th.pheromone {
    font-weight: normal;
    font-size: 14px;
}

.site-overview-page th.trap-id,
.site-overview-page td.trap-id {
    padding-right: 5px;
    padding-left: 5px;
}

.site-overview-page td.date-cell,
.site-overview-page td.trap-id,
.site-overview-page td.room-number {
    text-align: centre;
}

.site-overview-page .table-wrapper {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
}

.site-overview-page .table-container {
    width: max-content;
}

.site-overview-page .horizontal-scrollbar-container {
    position: fixed;
    bottom: 0;
    left: 20px; /* Same padding as .page-content */
    right: 20px; /* Same padding as .page-content */
    height: 20px;
    background-color: #EFFDFF;
    overflow-x: auto;
    z-index: 1000;
}

.site-overview-page .dummy-scrollbar {
    height: 1px;
}

.site-overview-page .page-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    position: relative;
    overflow-y: auto; /* Enable vertical scrolling within this container */
}

.site-overview-page .device-count {
    margin-top: 20px;
    margin-bottom: 20px;
}

.site-overview-page .table-container {
    overflow-x: auto;
    overflow-y: auto;
    height: 750px; /* Set the desired height */
    width: 100%;
}

.site-overview-page thead th {
    position: sticky;
    top: 0;
    background: #f1f1f1;
    z-index: 2; /* Ensures the header is above the sticky columns */
}

.site-overview-page tbody td:first-child,
.site-overview-page tbody td:nth-child(2),
.site-overview-page tbody td:nth-child(3),
.site-overview-page thead th:first-child,
.site-overview-page thead th:nth-child(2),
.site-overview-page thead th:nth-child(3) {
    position: sticky;
    left: 0;
    background: #fff;
    z-index: 1; /* Ensures the sticky columns are above other cells */
}

.site-overview-page tbody td:nth-child(2) {
    left: 25px; /* Adjust based on the width of the first column */
    position: sticky;
}

.site-overview-page tbody td:nth-child(3) {
    position: sticky;
    left: 85px; /* Adjust based on the width of the first two columns */
}

.site-overview-page thead th:first-child {
    position: sticky;
    z-index: 3; /* Ensure header first column is above all */
}

.site-overview-page thead th:nth-child(2) {
    position: sticky;
    left: 25px; /* Adjust based on the width of the first column */
    z-index: 3; /* Ensure header second column is above all */
}

.site-overview-page thead th:nth-child(3) {
    position: sticky;
    left: 85px; /* Adjust based on the width of the first two columns */
    z-index: 3; /* Ensure header third column is above all */
}
