﻿/*===========================
      Side Bar
===========================*/
#sidebar {
	width: 350px;
	padding: 10px;
	background-color: #f0f0f0;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.1);
}
#sidebar-top-controls {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #f0f0f0;
	
	max-width: 350px;
	height: 100%;
}
.dispatch-controls select, .dispatch-controls input, .dispatch-controls button,     {
	width: calc(100% - 20px);
	padding: 5px;
	margin: 5px 5px;
	font-size: 1rem;
	box-sizing: border-box;
}
.dispatch:active, .customer-button:active, .driver-button:active {
	transform: scale(0.95);
	opacity: 0.8;
}
.dispatch:active {
	transform: scale(0.95);
	opacity: 0.8;
}
.marker-type-select-button {
	color: #000;
	width: calc(100% - 20px);
	padding: 10px 2.5em 10px 10px;
	margin: 0 10px;
	font-size: 1rem;
	line-height: 1.2;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 5px;
	background-color: rgba(255,255,255,0.9);
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	transition: border-color 0.3s ease-in-out;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	background-image: url("../images/caret-icon.png");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 0.65em 0.8em;
	outline: none;
	-webkit-text-fill-color: #000;
}
.marker-type-select-button:focus {
	border-color: #999;
	-webkit-tap-highlight-color: transparent;
}
#allow-adds-dropdown {
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1rem;
	width: 80px;
	padding: 5px 2.5em 5px 10px;
	margin: 0px;
	background-color: rgba(255, 255, 255, 0.9);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	background-image: url("../images/caret-icon.png");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 0.65em 0.8em;
	color: #000;
	-webkit-text-fill-color: #000;
	transition: border-color 0.3s ease-in-out;
}
#third-input {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
#approve-placement-button, #edit-dispatch-review-button {
	font-weight: 700;
	width: 50%;
	margin-top: 10px;
	margin-bottom: 10px;
}
.sidebar-bottom-controls {
	margin-top: auto;
	padding-top: 20px;
	padding-bottom: 5px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
span#allow-adds-dropdown-button {
	width: 60px;
}
button#saveDispatchDataButton {
	margin-top: 10px;
	margin-bottom: 7px;
}
.lower-button {
	width: calc(100% - 20px);
	padding: 10px;
	margin: 5px 10px;
	font-size: 1rem;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 5px;
	background-color: rgba(255, 255, 255, 0.9);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	text-align: center;
	cursor: pointer;
	display: inline-block;
	text-decoration: none;
	user-select: none;
}
.lower-button:hover {
	background-color: #e6e6e6;
	border-color: #bbb;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
#reset-map-button {
	width: calc(100% - 20px);
	padding: 10px;
	margin-top: 10px;
	font-size: 1rem;
	box-sizing: border-box;
}
#location-input, #customer-name-input, #customer-contact-input, #unique-id-input {
	width: calc(100% - 20px);
	padding: 10px;
	margin: 5px 10px;
	font-size: 1rem;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 5px;
	background-color: rgba(255, 255, 255, 0.9);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	transition: border-color 0.3s ease-in-out;
}
#save-dispatch-button {
	background-color: #3478f5;
	color: #fff;
	font-size: 16px;
	padding: 12px 24px;
	border: none;
	font-weight: 700;
	border-radius: 5px;
	cursor: pointer;
	margin-top: 10px;
	margin-bottom: 20px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
	display: none;
}
#save-dispatch-button:hover {
	background-color: #255fd1;
}
/*===========================
      Map
===========================*/
#map-container {
	display: flex;
	flex-direction: column;
	position: relative;
	width: 100%;
	flex: 1;
}
#map {
	flex: 1;
	display: block;
	height: 100%;
	position: relative;
}
#dispatcher-map-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: #888;
	height: 100%;
	background-color: #d7d7d7;
	font-size: 32px;
}
/*===========================
      Marker Info
===========================*/
.marker-info-container {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	position: absolute;
	bottom: 75px;
	left: 50%;
	transform: translateX(-50%);
	pointer-events: none;
	width: 100%;
}
/*===========================
      Modals
===========================*/
.modal {
	display: none;
	position: fixed;
	z-index: 99;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.4);
}
#email-missing-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
}
.toast {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #f4f4f4;
	color: #333;
	padding: 20px 40px;
	border-radius: 10px;
	font-size: 1.2rem;
	font-weight: 700;
	box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
	opacity: 1;
	z-index: 1000;
	text-align: center;
	max-width: 80%;
}
#defaults-toast {
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
}
/*===========================
  Dispatch Control Buttons
===========================*/
.square-button-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 3px 0px;
}
#select-trigger {
	cursor: pointer;
	height: 45px;
	width: 45px;
	border: none;
}
#select-trigger-image {
	height: 100%;
	width: auto;
}
#dispatch-button-container {
	flex-direction: column;
	background-color: #dfdfdf;
	display: none;
}
.dispatch-buttons {
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 100%;
	max-width: 500px;
}
.dispatch {
	background-color: #ffffff;
	background-size: cover;
	border-radius: 5px;
	cursor: pointer;
	height: 45px;
	width: 45px;
	border: none;
}
/* Common styles for multiple elements */
#selectTrigger, #add-marker-set-button, #delete-marker-set-button, #select-all-markers-button, #rotate-left-button, #rotate-right-button {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
/* Button background images */
#add-marker-set-button {
	background-image: url(../images/add.png);
}
#add-marker-set-button:hover, #delete-marker-set-button:hover, #select-all-markers-button:hover, #toggle-truck-markers-button:hover {
}
#delete-marker-set-button {
	background-image: url(../images/subtract.png);
}
#rotate-left-button {
	background-image: url(../images/left-white.png);
}
#rotate-left-button:hover, #rotate-right-button:hover {
}
#rotate-right-button {
	background-image: url(../images/right-white.png);
}
#toggle-truck-markers-button {
	background-image: url(../images/dispatch-fit.png);
}
#flip-box-markers-button {
	background-image: url(../images/dispatch-door.png);
}
#select-all-markers-button {
	background-image: url(../images/dispatch-select.png);
}
/* Styling for dispatch-related buttons */
#add-marker-set-button.dispatch, #delete-marker-set-button.dispatch, #select-all-markers-button.dispatch {
	height: 45px;
	width: 45px;
}
/* Color styling */
.light-blue {
	background-color: #3478f5;
}
/*===========================
  Dispatch Review Controla
===========================*/
.review-button-group {
	display: flex;
	gap: 10px;
	padding: 0px 10px;
}
.approve-button {
	background-color: #28a745;
	color: white;
	height: 60px;
}
.approve-button:hover {
	background-color: #208737;
}
.review-button {
	background-color: #007BFF;
	color: white;
	height: 60px;
}
.review-button:hover {
	background-color: #0066d3;
}
.review-button, .approve-button, .save-button {
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
}
.save-button {
	background-color: #ffc107;
	color: black;
	font-weight: bold;
	height: 56px;
}
.save-button:hover {
	background-color: #f3c640;
}
button {
	padding: 10px 20px;
	font-size: 1rem;
}
input#notifyCustomerCheckbox {
	width: auto;
}
input[type=checkbox] {
	transform: scale(1.5);
	margin-right: 20px;
}
#notificationCheckbox {
	display: flex;
}
.controls > div {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0px 0px;
}
.title {
	text-align: center;
	margin: 0;
	padding: 5px;
}
#cancel-review-button {
	margin-top: auto;
}
#dispatch-review-button-container {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #dfdfdf;
	display: none;
}
.review-button-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 3px 0px;
	width: 60px;
}
/*===========================
  Request Page
===========================*/
.search-bar {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px;
	background-color: #f5f5f5;
	border-radius: 8px;
	width: 100%;
}
.search-form {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	max-width: 500px;
}
button#toggle-date-filters {
	max-width: 200px;
}
input#search-input {
}
.search-bar input, .search-bar button {
	flex-grow: 1;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1rem;
	transition: background-color 0.3s ease, transform 0.2s ease;
	margin-left: 5px;
}
.search-bar button:hover {
	background-color: #dfdfdf;
}
#date-filters {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding-bottom: 15px;
}
.date-filter-form {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 800px;
}
select#date_field {
	width: auto;
}
.date-filter-form input[type=text], .date-filter-form input[type=email], .date-filter-form input[type=tel], .date-filter-form input[type=date], .date-filter-form select {
	padding: 5px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 1rem;
	margin-right: 15px;
}
.date-filter-form button {
	padding: 5px;
	text-align: center;
	cursor: pointer;
}
/* Table Styles */
table {
	border-collapse: collapse;
	margin: 10px;
}
.table-container {
	width: 100%;
	max-width: 1450px;
}
#add-users table {
	width: 100%;
}
th, td {
	border: 1px solid gray;
	padding: 8px;
	text-align: center;
}
th {
	background-color: #333;
	color: white;
}
th.narrow, td.narrow {
	width: 5%;
}
th.date, td.date {
	width: 8%;
}
th.status, td.status {
	width: 8%;
}
th.id-column {
	width: 6%;
}
.resend {
	text-align: right;
}
/* Legend */
.legend {
	display: flex;
	margin: 5px 0px;
}
.legend div {
	display: flex;
	align-items: center;
	padding-left: 5px;
}
.legend span {
	display: inline-block;
	width: 20px;
	height: 20px;
	vertical-align: middle;
	margin-right: 5px;
}
/* Backgrounds */
.red-bg {
	background-color: rgba(255, 0, 0, 0.5);
	color: black;
	font-weight: bold;
}
.green-bg {
	background-color: rgba(0, 128, 0, 0.5);
	color: black;
}
.yellow-bg {
	background-color: rgba(255, 255, 0, 0.5);
	color: black;
}
.blue-bg {
	background-color: rgba(204, 230, 255, 1);
	color: black;
}
/* Links */
td a {
	color: black;
	text-decoration: none;
}
td a:hover {
	text-decoration: underline;
}
.resubmit-icon, .copy-link-icon {
	text-decoration: none;
}
.resubmit-icon:hover, .copy-link-icon:hover {
	text-decoration: none;
}
/* Pagination */
.pagination {
	text-align: center;
	margin: 20px 0;
}
.pagination a, .pagination span {
	display: inline-block;
	margin: 0 5px;
	padding: 8px 12px;
	color: #007bff;
	text-decoration: none;
	border: 1px solid #ddd;
	border-radius: 4px;
}
.pagination a:hover {
	background-color: #f1f1f1;
}
.pagination .current-page {
	background-color: #007bff;
	color: white;
	border: 1px solid #007bff;
}
/*===========================
  Modals
===========================*/
/* Unlock Modal */
#unlock-modal, #notify-modal, #delete-modal, #notify-delete {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	padding: 20px;
	display: none;
	z-index: 1000;
}
#unlock-modal h2 {
	margin-top: 0;
	color: #333;
}
#unlock-modal p {
	font-size: 1.2rem;
}
/* Key Modal (for phone usage) */
.key-modal {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	z-index: 1000;
	padding: 20px;
	max-width: 700px;
}
.key-modal.show {
	display: block;
	animation: fadeIn 0.3s ease-in-out;
}
.key-modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
}
.key-modal-overlay.show {
	display: block;
}
.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}
.modal-header h2 {
	margin: 0;
	font-size: 1.7rem;
	color: #333;
}
.modal-header .close {
	cursor: pointer;
	font-size: 1.8rem;
	color: #888;
	transition: color 0.2s;
}
.modal-header .close:hover {
	color: #f00;
}
.keys-list {
	list-style: none;
	padding: 0;
}
.keys-list li {
	margin-bottom: 15px;
	display: flex;
	align-items: center;
}
.keys-list li img {
	width: 30px;
	height: 30px;
	margin-right: 10px;
}
.notice-message {
	background-color: #fff8e6;
	border: 1px solid #ffd27f;
	padding: 10px;
	margin-top: 10px;
	border-radius: 5px;
}
.smoke-color {
	background-color: rgba(0, 0, 0, 0.7);
}
.thank-you-container {
	background-color: #fff;
	margin: 20px;
	border-radius: 10px;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
	max-width: 600px;
	width: 80%;
	padding: 20px;
}
.thank-you-container a {
	display: inline-block;
	margin-top: 20px;
	margin-bottom: 20px;
	padding: 10px 20px;
	background-color: #3579f5;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	transition: background-color 0.3s ease;
}
#address-container {
	background: var(--header-color);
	color: var(--text-color);
	padding: 5px 20px;
	font-size: 1.1rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	justify-content: space-between;
	box-sizing: border-box;
	height: 45px;
}
#driver-form {
	width: 95%;
	max-width: 450px;
}
.form-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	padding: 20px;
	background-color: white;
	width: 100%;
	margin: 20px 10px;
}
/* Dashboard Layout */
.dashboard-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-top: 20px;
	margin-bottom: 30px;
}
.dashboard-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	text-decoration: none;
	border: 2px solid #ccc;
	border-radius: 10px;
	background-color: #f9f9f9;
	transition: background-color 0.3s, border-color 0.3s;
	width: 375px;
	height: 135px;
}
.dashboard-item:hover {
	background-color: #e6e6e6;
	border-color: #888;
}
.dashboard-item img {
	max-width: 50px;
	height: auto;
	margin-bottom: 10px;
}
.dashboard-item div {
	font-size: 18px;
	font-weight: bold;
	color: #333;
}
.no-line {
	text-decoration: none;
}
/* Equipment Grid */
.equipment-container {
	display: flex;
	overflow-x: auto;
	padding: 20px;
	border: 1px solid #ddd;
	background-color: #f9f9f9;
	gap: 15px;
}
.equipment-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}
.equipment-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-right: 15px;
	text-align: center;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 15px;
	background-color: #ffffff;
	box-sizing: border-box;
	height: 500px;
	position: relative;
}
.equipment-item:nth-child(even) {
    background-color: #e0e0e0;
}
.equipment-item:hover {
	background-color: #d0d0d0;
}
.description-text {
	color: #333;
	text-align: center;
}
input[type=checkbox] {
	transform: scale(1.5);
	margin-right: 20px;
}
.upload-preview img {
	max-width: 100%;
	height: auto;
}
.checkbox-svg-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	height: 50%;
}
.drop-area {
	border: 2px dashed #ccc;
	padding: 10px;
	cursor: pointer;
	color: #2d2d2d;
	transition: border-color 0.3s ease;
	text-align: center;
	width: 200px;
	align-self: flex-end;
}
#svgContainer {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
	padding: 20px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	min-width: 560px;
}
.svg-container {
	display: inline-block;
}
.colors-svg-container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 700px;
	height: 200px;
	border: 1px solid #ddd;
	border-radius: 8px;
	background-color: #fafafa;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	margin-bottom: 10px;
	min-width: 280px;
}
.color-picker-container {
	display: flex;
	gap: 15px;
	justify-content: center;
}
.set-colors-label {
	font-weight: bold;
	color: #333;
	padding: 10px;
}
#thumbnails {
	display: flex;
	gap: 10px;
	padding-left: 30px;
}
.thumbnail {
	width: 100px;
	height: 100px;
	cursor: pointer;
}
/* Manage Drivers */
.flex-sb {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
.input-row {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
.input-row input, select {
	flex: 2;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 4px;
}
.input-row label {
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
}
.md-button {
	background-color: #007bff;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s;
}
#signup-button {
	background-color: #4CAF50;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s;
	margin-top: 15px;
	font-weight: bold;
}
#signup-button:hover {
	background-color: #378b3a;
}
.message {
	padding: 10px;
	margin-bottom: 20px;
	border-radius: 4px;
	text-align: center;
}
.message.success {
	background-color: #d4edda;
	color: #155724;
}
.message.error {
	background-color: #f8d7da;
	color: #721c24;
}
.green-button {
	background-color: #4CAF50;
	color: white;
	padding: 4px 8px;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s;
}
.red-button {
	background-color: #c80000;
	color: white;
	padding: 4px 8px;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s;
}
.settings-container {
	background-color: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
	width: 100%;
	max-width: 1000px;
	text-align: center;
}
.form-group input[type=text], .form-group input[type=email], .form-group input[type=tel], .form-group select {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 1rem;
	margin: 10px 0;
	box-sizing: border-box;
}
#edit-company {
	max-width: 600px;
}
.form-group {
	width: 100%;
}
.form-group label {
	display: block;
	color: #666;
	font-weight: bold;
	font-size: 1rem;
	margin: 5px 0;
	text-align: center;
	padding-top: 5px;
}
.form-group input[type=submit] {
	width: 100%;
	padding: 12px;
	background-color: #4CAF50;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.3s;
	font-weight: 700;
}
.text-one-rem {
	font-size: 1rem;
	margin: 5px 0;
	font-weight: bold;
}
.default-add-setting, .custom-header-setting, .upload-logo, .allow_driver_edit {
	display: flex;
	align-items: center;
	gap: 5px;
	margin: 20px 0;
	padding-left: 30px;
}
#edit-company-submit-button:hover {
	background-color: #337936;
}
form {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
}
.welcome-container {
	text-align: center;
	margin: 50px auto;
	max-width: 600px;
	background: #ffffff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.ss-image {
	width: 100%;
	max-width: 450px;
	height: 280px;
	display: block;
	margin: 10px auto;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.ss-img {
	width: 450px;
	height: 300px;
	display: block;
	margin: 10px auto;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#default-settings-form {
	width: 100%;
	max-width: 500px;
}
#equipment-sort {
	width: 160px;
}
#driver-form {
	width: 95%;
	max-width: 450px;
}
.manage-driver-input {
	padding: 10px;
	margin: 0px 0;
	font-size: 1rem;
	border: 1px solid #ccc;
	border-radius: 4px;
}
#driver_name, #driver_email {
	margin: 0px 0;
}
#driver_password {
	max-width: 150px;
}
.setup-actions {
	display: flex;
	justify-content: space-around;
}
.blue-button {
	padding: 10px;
	margin-top: 10px;
	background-color: #007bff;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 18px;
	text-align: center;
}
.orange-button {
	padding: 10px;
	margin-top: 10px;
	background-color: #FF4500;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 18px;
	text-align: center;
}
.green-button {
	padding: 10px;
	background-color: #4CAF50;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 18px;
	text-align: center;
}
.gray-button {
	padding: 10px;
	background-color: #888;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 18px;
	text-align: center;
}
/* Select  Button */
.circle-text {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background-color: #3478f5; /* Default color */;
	color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 14px;
	text-align: center;
	line-height: 1.2;
	text-transform: uppercase;
	position: relative;
}
.circle-text:hover {
	background-color: #4c86f1; /* Default color */
}
/* Positioning */
.circle-text .top-text {
	font-size: 16px;
	font-weight: bold;
	position: absolute;
	top: 4px;
}
.circle-text .bottom-text {
	font-size: 16px;
	font-weight: bold;
	position: absolute;
	bottom: 4px;
}
.popup-note {
	font-size: 11px;
	color: white;
	margin-top: 4px;
	font-style: italic;
}
/* Responsive */
@media only screen and (max-width: 1020px) {
.table-container {
	width: 100%;
	overflow-x: auto;
}
table {
	width: 100%;
	border-collapse: collapse;
	margin: 10px;
}
}
@media (max-width: 760px) {
.hide-div-mobile {
	display: none;
}

}
@media only screen and (max-width: 600px) {
#svgContainer {
	min-width: 280px;
}
#thumbnails {
	display: none;
}
#customize-demo-logo {
	font-size: 30px;
}
#search-input {
	margin-bottom: 15px;
}
#toggle-date-filters {
	width: 320px;
}
.row-to-column {
	flex-direction: column;
}
.search-bar {
	gap: 0px;
	padding-bottom: 15px;
}
.search-form {
	padding-bottom: 15px;
}
.date-filter-form button {
	margin-top: 15px;
}
.key-content {
	padding: 20px;
}
.modal-header h2 {
	font-size: 1.3rem;
}
.notice-section h3 {
	font-size: 1.3rem;
}
.controls-list li {
	font-size: 0.95rem;
}
#address-container {
	font-size: 14px;
}
.setup-actions {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}
.table-container {
	width: 100%;
	overflow-x: auto;
}
table {
	width: 100%;
	border-collapse: collapse;
	margin: 10px;
}
/* Show phone button on mobile screens */
.phone-button {
	display: flex;
}
}
@media only screen and (max-width: 400px) {
#customize-demo-logo {
	font-size: 20px;
}
#address-container {
	font-size: .9rem;
}
#location-icon {
	display: none;
}
}
select#date_field {
	width: auto;
}
#driver_password {
	max-width: 100%;
}
/* Combined Styles - End */
}
