@charset "UTF-8";

#filters { 
	position: fixed; 
	top: 110px; 
	z-index: 1;
}

#filters .form-group { 
	margin: 0; 
}

#filters .switch-button { 
	padding-left: 23px; 
}

/* Style the datepicker input */
#datepicker .form-control {
	border: 1px solid #ced4da;
	border-radius: 0.375rem 0 0 0.375rem;
	padding: 1rem;
	font-size: 1rem;
	background-color: #f9f9f9;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

#datepicker .form-control:focus {
	box-shadow: 0 0 8px rgba(0, 123, 255, 0.25);
	border-color: #007bff;
	background-color: white;
}

/* Style the input group append (icon container) */
#datepicker .input-group-append {
	border-left: none;
	background-color: white;
}

#datepicker .input-group-text {
	border: 1px solid #ced4da;
	border-left: none;
	border-radius: 0 0.375rem 0.375rem 0;
	background-color: #f9f9f9;
	transition: background-color 0.2s ease;
}

#datepicker .input-group-text:hover {
	background-color: #e9ecef;
}

/* Style the calendar icon */
#datepicker .input-group-text i {
	color: #007bff;
	font-size: 1.2rem;
}

/* Style the datepicker dropdown (calendar) */
.datepicker-dropdown {
	border-radius: 0.375rem;
	border: 1px solid #ced4da;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.datepicker table {
	margin: 0;
}

.datepicker td,
.datepicker th {
	padding: 0.75rem;
	border-radius: 0.375rem;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.datepicker td.day:hover,
.datepicker td.day.focused {
	background-color: #007bff;
	color: white;
}

.datepicker td.active {
	background-color: #007bff;
	color: white !important;
	font-weight: bold;
}

.datepicker td.today {
	background-color: #e9ecef;
	border-radius: 50%;
	color: #007bff;
}

.datepicker th {
	color: #007bff;
	font-weight: bold;
}

/* Style the navigation arrows */
.datepicker .prev,
.datepicker .next {
	font-size: 1.25rem;
	color: #007bff;
}

.datepicker .prev:hover,
.datepicker .next:hover {
	color: #0056b3;
}

/* SWITCH */
.switch {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 24px;
}

/* Hide default HTML checkbox */
.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

/* The slider */
.switcher {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.switcher:before {
	position: absolute;
	content: "";
	height: 16px;
	width: 16px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked + .switcher {
	background-color: #2196F3;
}

input:focus + .switcher {
	box-shadow: 0 0 1px #2196F3;
}

input:checked + .switcher:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}

/* Rounded switchers */
.switcher.round {
	border-radius: 24px;
}

.switcher.round:before {
	border-radius: 50%;
}

/* Tablet styles */
@media (min-width: 768px) and (max-width: 1024px) {
	/* Add tablet-specific styles here if needed */
}

/* Mobile styles */
@media (max-width: 767px) {
	#filters { 
		position: relative; 
		top: auto;
	}
	
	.hide-mobile { 
		display: none; 
	}
}