.form-container {
	display: none;
}

.btn-group {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.btn-group .btn {
	background-color: #eaeaea;
	color: #6c757d;
	width: 380px;
	text-align: center;
}

.btn-group .btn.active {
	background-color: #6c757d;
	color: white;
}

.upload-box {
	display: block;
	width: 150px;
	/* Adjust width as needed */
	height: 150px;
	/* Adjust height as needed */
	border: 2px dashed #ccc;
	border-radius: 8px;
	cursor: pointer;
	overflow: hidden;
	position: relative;
}

.upload-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.upload-icon {
	font-size: 32px;
	color: #aaa;
}

.upload-text {
	font-size: 14px;
	color: #888;
	margin-top: 8px;
}

/* Optional: style the upload box when hovering over it */
.upload-box:hover {
	border-color: #666;
}

/* Style the image preview */
#profile-picture-preview img {
	max-width: 100%;
	max-height: 100%;
	border-radius: 8px;
	display: block;
}

.custom-file-container__custom-file {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 1;
}

.custom-file-container__custom-file__custom-file-control {
	display: none;
}

.custom-file-container__image-preview {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.custom-file-container__image-preview img {
	max-width: 100%;
	max-height: 100%;
	display: block;
	margin: auto;
}

.custom-file-container {
	position: relative;
	overflow: hidden;
	width: 200px;
	height: 200px;
	border: 2px solid #ccc;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.form-number {
	width: 80px;
	height: 80px;
	font-size: 2rem;
	text-align: center;
	margin: 0 10px;
}

.footer-container a {
	text-decoration: none;
	/* Remove underline */
	color: black;
	/* Change text to black */
}

.footer-container a:hover {
	color: black;
	/* Ensure the color stays black on hover */
}

.social-icon {
	margin-right: 10px;
}

.social-icon a {
	font-size: 2rem;
	/* Adjust the size as needed */
	color: black;
	/* Change icon color to black */
}

.social-icon a:hover {
	color: black;
	/* Ensure the color stays black on hover */
}

#calendar-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
}

#calendar-controls button {
	margin: 0 10px;
}

#monthYear {
	font-size: 1.5em;
}

.card-no-border {
	border: none;
	box-shadow: none;
}

/* calender  */
.custom-table {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	text-align: center;
	border: 1px solid #dee2e6;
	border-collapse: collapse;
}

.custom-table th,
.custom-table td {
	border: 1px solid #dee2e6;
	padding: 15px;
}

.custom-table th {
	background-color: #f8f9fa;
	color: #495057;
}

.calendar-day {
	cursor: pointer;
	background-color: #fff;
	color: #333;
	transition: transform 0.3s, background 0.3s;
}

.calendar-day:hover {
	background: linear-gradient(to bottom, #f0f0f0 0%, #fff 50%, #f0f0f0 100%);
	color: #a00b0b;
	transform: scale(1.05);
}

.current-day {
	color: #4285F4;
	font-weight: bold;
}


.calendar-day:hover {
	background-color: #f0f0f0;
}

.card {
	margin: 10px;
}

.custom-modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	overflow: auto;
}

.modal-content {
	background-color: #fefefe;
	margin: 2% auto;
	/* Reduced top margin */
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	max-width: 600px;
	border-radius: 8px;
	position: relative;
}

.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	position: absolute;
	top: 10px;
	right: 10px;
}

.close:hover,
.close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

.selected-day {
	background-color: #4285F4;
	color: white;
	transition: background 0.3s;
}

.selected-day:hover {
	background: linear-gradient(to bottom, #4285F4 0%, #4285F4 50%, #4285F4 100%);
	color: white;
}

.prev-month-day,
.next-month-day {
	color: #b0b0b0;
	/* Light color for previous and next month days */
	background-color: #f5f5f5;
	/* Optional background color */
}

.prev-month-day:hover,
.next-month-day:hover {
	background-color: #e0e0e0;
	/* Light color on hover */
}

.red-icon {
	color: red;
	transition: transform 0.3s, background 0.3s;
	display: inline-block;
}

.red-icon:hover {
	color: red;
	transform: scale(1.25);
}

.custom-modal-content {
	background-color: #fefefe;
	margin: 15% auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	max-width: 500px;
	text-align: center;
	border-radius: 10px;
}

.custom-modal-close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	display: none;
}

.custom-modal-close:hover,
.custom-modal-close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

.custom-btn {
	padding: 10px 20px;
	margin: 10px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.custom-btn-danger {
	background-color: #E74C3C;
	color: white;
}

.custom-btn-secondary {
	background-color: #2ECC71;
	color: white;
}

.custom-btn-danger:hover,
.custom-btn-secondary:hover {
	opacity: 0.8;
}

.hover-effect {
	background-color: #ffffff;
	color: #333;
	transition: transform 0.3s, background 0.3s;
}

.hover-effect:hover {
	background: linear-gradient(to bottom, white 0%, white 50%, white 100%);
	color: black !important;
	transform: scale(1.05);
	border-radius: 3px;
}

/* Remove default focus outlines for all buttons */
button:focus,
.btn:focus {
	outline: none;
	box-shadow: none;
}

/* Custom button styles */
.btn-group .btn {
	transition: transform 0.3s, background 0.3s;
}

.btn-group .btn:hover {
	background: linear-gradient(to bottom, #4285F4 0%, #4285F4 50%, #4285F4 100%);
	color: white;
	transform: scale(1.05);
	border-radius: 3px;
}

.btn-group .btn.selected {
	background: linear-gradient(to bottom, #4285F4 0%, #4285F4 50%, #4285F4 100%);
	color: white;
	border-radius: 3px;
}

.btn-group .btn-staff:hover {
	background: #eaeaea;
	transform: scale(1.00);
}

.btn-group .btn-staff.active:hover {
	background: #6c757d;
	transform: scale(1.00);
}

.zoom-card {
	transition: transform 0.2s;
}

.zoom-card:hover {
	transform: scale(1.05);
}

.highlight-green {
	background: linear-gradient(to bottom, green 0%, green 50%, green 100%);
	color: white !important;
	border-radius: 3px;
}

.highlight-green:hover {
	background: linear-gradient(to bottom, green 0%, green 50%, green 100%);
	color: white !important;
	transform: scale(1.05);
}

.highlight-orange {
	background: linear-gradient(to bottom, orange 0%, orange 50%, orange 100%);
	color: white !important;
	border-radius: 3px;
}

.highlight-orange:hover {
	background: linear-gradient(to bottom, orange 0%, orange 50%, orange 100%);
	color: white !important;
	transform: scale(1.05);
}

.highlight-red {
	background: linear-gradient(to bottom, red 0%, red 50%, red 100%);
	color: white !important;
	border-radius: 3px;
}

.highlight-red:hover {
	background: linear-gradient(to bottom, red 0%, red 50%, red 100%);
	color: white !important;
	transform: scale(1.05);
}

.highlight-light-green {
	background: linear-gradient(to bottom, red 0%, red 50%, red 100%);
	color: white !important;
	border-radius: 3px;
}

.highlight-light-green:hover {
	background: linear-gradient(to bottom, red 0%, red 50%, red 100%);
	color: white !important;
	transform: scale(1.05);
}

.dropdown {
	position: relative;
}

.dropdown-menu {
	display: none;
	position: absolute;
	background-color: #fff;
	border: 1px solid #ddd;
	z-index: 1050;
	width: 100%;
}

.dropdown-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.dropdown-menu li {
	padding: 4px;
	cursor: pointer;
}

.dropdown-menu li:hover {
	background-color: #f1f1f1;
}

.custom-input {
	width: 100%;
	padding: 6.5px;
	border: 1px solid #ddd;
	border-radius: 7px;
	box-sizing: border-box;
	text-align: start;
}

.custom-dropdown-container {
	position: relative;
}

.custom-input-wrapper {
	position: relative;
}

.custom-dropdown-list {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 4px;
	max-height: 150px;
	overflow-y: auto;
	z-index: 1000;
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.custom-dropdown-item {
	padding: 4px;
	cursor: pointer;
	transition: background-color 0.2s;
}

.custom-dropdown-item:hover {
	background-color: #f1f1f1;
}

.custom-form-label {
	margin-bottom: 8px;
}

.custom-invalid-feedback {
	color: red;
	margin-top: 8px;
	display: block;
}

.job-status {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    cursor: pointer;
    min-width: 180px;
    text-align: center;
    font-weight: bold;
    transition: background-color 0.2s ease-in-out;
    color: white !important; /* Ensures text remains visible */
}

#map {
	height: 500px;
	width: 100%;
}

.remove-btn {
	position: absolute;
	top: 5px;
	right: 5px;
	background-color: #dc3545;
	color: white;
	border: none;
	border-radius: 20%;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	cursor: pointer;
}

.remove-btn:hover {
	background-color: #c82333;
}

.site-set {
    position: relative;
    padding-top: 40px;
}

.remove-site {
    position: absolute;
	top: 5px;
	right: 5px;
	background-color: #dc3545;
	color: white;
	border: none;
	border-radius: 20%;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	cursor: pointer;
}







