﻿/* Base: tokens, element defaults, utilities, and their media queries */
/* ==== Begin from root-styles.css ==== */

input[type=text], input[type=email], input[type=tel], select {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 1rem;
	margin: 10px 0;
}

input[type=email], input[type=password],input[type=text] {
	padding: 10px;
	margin: 10px 0;
	font-size: 1rem;
	box-sizing: border-box;
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 4px;
}

input[type=checkbox] {
	transform: scale(1.5);
	margin-right: 20px;
}

textarea {
	resize: vertical;
	height: 150px;
}

textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
	margin: 5px 0;
	font-size: 16px;
	margin-bottom: 20px;
}

.button {
	padding: 10px;
	margin-top: 10px;
	background-color: #007bff;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 1rem;
	text-align: center;
}

.hero h1 {
	font-size: 2.8em;
	margin-bottom: 0.3em;
}

.hero p {
	font-size: 1.9em;
	margin-bottom: 1.2em;
	margin-top: 0px;
	color: white;
}

a.cta-button {
	text-decoration: none;
}

.features h2 {
	font-size: 2.5em;
	margin-bottom: 1em;
}

.feature-item h3 {
	font-size: 1.5em;
	margin-top: 0.5em;
	text-align: center;
}

.feature-item p {
	font-size: 1em;
	color: #7f8c8d;
}

.benefits h2 {
	font-size: 2.5em;
	margin-bottom: 1em;
}

.benefit-item h3 {
	font-size: 1.5em;
	margin-top: 0.5em;
}

.benefit-item p {
	font-size: 1em;
	color: #7f8c8d;
}

.pricing h2 {
	font-size: 2.5em;
	margin-bottom: 1em;
}

.pricing -item p {
	font-size: 1.1em;
	color: #7f8c8d;
	font-style: italic;
}

.pricing -item h4 {
	margin-top: 0.5em;
	font-size: 1em;
	color: #2c3e50;
}

.cta h2 {
	font-size: 2.8em;
	margin-bottom: 0.5em;
}

.cta p {
	font-size: 1.5em;
	margin-bottom: 1.5em;
	color: white;
}

footer {
	background-color: #2c3e50;
	color: white;
	padding: 1.5em 0;
	text-align: center;
	font-size: 0.9em;
}

footer a {
	color: #3478f5;
	text-decoration: none;
	margin: 0 0.5em;
}

footer a:hover {
	text-decoration: underline;
}

.pricing-section h2 {
	font-size: 2.5rem; /* Larger heading */;
	color: #333; /* Darker text for readability */;
	margin-bottom: 30px;
}

.pricing-item h3 {
	font-size: 1.5rem; /* Smaller than the main heading */;
	color: #444; /* Dark but distinct */;
	margin-bottom: 10px;
	text-align: center;
}

.pricing-item p {
	font-size: 1rem; /* Standard paragraph size */;
	color: #666; /* Subtle text color */;
	margin-bottom: 15px;
}

@media (max-width: 768px) {
.feature-grid, .benefit-grid {
	flex-direction: column;
	align-items: center;
}
.hero h1 {
	font-size: 2.5em;
}
.hero p {
	font-size: 1.2em;
}
}


/* ==== End of root-styles.css ==== */

/* ==== Begin from colors.css ==== */

ï»¿/*===========================
      Color Classes
===========================*/
.primary {
	fill: var(--primary-color) !important;
}

.primary-bk {
	background-color: var(--primary-color) !important;
}

.secondary {
	fill: var(--secondary-color) !important;
}

.selected {
	fill: var(--selected-color) !important;
}

.red-text {
	color: maroon;
	font-weight: bold;
}

.gray-text {
	color: rgba(0, 0, 0, 0.7);
	font-weight: bold;
}

.black-text {
	color: black;
}


/* ==== End of colors.css ==== */

/* ==== Begin from core-styles.css ==== */

.disable-dbl-tap-zoom {
	touch-action: manipulation;
}

.custom-select select {
	-webkit-appearance: none; /* Remove default styles */;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	padding: 12px 40px 12px 12px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 16px;
	background-color: white;
	cursor: pointer;
	transition: 0.3s;
}

.custom-select select:focus {
	border-color: #007bff;
	outline: none;
	box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
select {
	font-size: 16px; /* Prevents zooming on iOS */
}
}

html, body {
	margin: 0;
	padding: 0;
	height: 100dvh;
	min-height: 100dvh; /* not 100vh */;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1rem;
	color: #333;
	display: flex;
	flex-direction: column;
}

main {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	justify-content: center; /* Centers content vertically */;
	align-items: center; /* Centers content horizontally */;
	background-color: #f4f4f4; /* Adjust as needed */;
	width: 100%;
}

.flex-start {
	flex-grow: 1;
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	align-items: center;
	background-color: #f4f4f4;
}

h1 {
	text-align: center;
	font-size: 2.5em;
	font-weight: bold;
	padding: 10px;
	margin: 10px;
}

h2 {
	text-align: center;
	font-size: 2em;
	font-weight: bold;
	padding: 5px;
	margin: 5px;
}

h3 {
	text-align: left;
	font-size: 1.75em;
	font-weight: bold;
	padding: 5px;
	margin: 5px;
}

h4 {
	text-align: left;
	font-size: 1.25em;
	font-weight: bold;
	padding: 5px;
	margin: 5px;
}

h5 {
	text-align: center;
	font-size: 1.25em;
	font-weight: bold;
	padding: 5px;
	margin: 5px;
}

p {
	margin: 1rem 0;
	font-size: 1.1rem;
	line-height: 1.5;
	color: #333;
	font-family: Arial, sans-serif;
}

.disable-dbl-tap-zoom {
}

.flex {
	display: flex;
}

.grow {
	flex: 1;
}

.flex-grow {
	display: flex;
	flex: 1;
}

.flex-column {
	display: flex;
	flex-direction: column;
}

.flex-container {
	display: flex;
	flex-direction: column;
	height: 100vh;
}

.flex-jc-ac {
	display: flex;
	justify-content: center;
	align-items: center;
}

.flex-jc-ac-100 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.flex-jc-ac-col {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.flex-jc-ac-col-100 {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 100%;
}

.flex-container-ac-jc {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.flex-sa-ac {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
}

.flex-sb-ac {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
}

.flex-end {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
	margin-right: 15px;
	width: 100%;
}

.hundred-wide {
	width: 100%;
}

.center-all {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.column {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex: 1;
}

input[type=radio] {
	margin-right: 10px;
	transform: scale(1.2);
}

input[type=radio]:checked + label {
	font-weight: bold;
	color: #007bff;
}

.no-text-decoration, .hidden-decoration, .plain-text {
	text-decoration: none;
}

.no-text-decoration a, .hidden-decoration a, .plain-text a {
	text-decoration: none;
}

.button-group {
	display: flex;
	gap: 10px;
}

.public-header a {
	text-decoration: none;
	color: white;
}

.settings-link a {
	display: flex;
	margin: 0 auto;
	text-align: center;
	height: 24px;
}

#header a {
	text-decoration: none;
}

.public-header-link a {
	text-decoration: none;
	color: white;
}

.logo a {
	text-decoration: none;
}

.signup-status a {
	text-decoration: none;
}

.footer a {
	color: #3478f5;
	text-decoration: none;
	margin: 0 0.5em;
}

.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);
}

.modal-content {
	background-color: #fff;
	padding: 20px;
	border: 1px solid #888;
	border-radius: 15px;
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 90vw;
	width: 400px;
	box-sizing: border-box;
}

@media (max-width: 600px) {
.modal-content {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90vw;
	max-height: 90vh;
	overflow-y: auto;
}
}

.flex-button {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	margin-top: 10px;
	margin-left: 15px;
	background-color: silver;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 18px;
	text-align: center;
}

.button-div {
	padding: 10px;
	font-size: 1rem;
	background-color: #007bff;
	color: white;
	text-align: center;
	cursor: pointer;
	margin-top: 10px;
	border-radius: 4px;
	transition: background-color 0.3s ease;
	width: 200px;
	font-weight: bold;
}

.success-message {
	color: #28a745; /* Green for success */;
	background-color: #d4edda; /* Light green background */;
	border: 1px solid #c3e6cb;
/* Darker green border */padding: 10px 15px;
	border-radius: 4px;
	font-size: 14px;
	margin: 10px 0;
	text-align: center;
}

.error-message {
	color: #dc3545; /* Red for error */;
	background-color: #f8d7da; /* Light red background */;
	border: 1px solid #f5c6cb;
/* Darker red border */padding: 10px 15px;
	border-radius: 4px;
	font-size: 14px;
	margin: 10px 0;
	text-align: center;
}


/* ==== End of core-styles.css ==== */

/* ==== Begin from shared-styles.css ==== */

.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;
}

button#saveDispatchDataButton {
	margin-top: 10px;
	margin-bottom: 7px;
}

.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%;
}

input#notifyCustomerCheckbox {
	width: auto;
}

button#toggle-date-filters {
	max-width: 200px;
	margin-bottom: 10px;
}

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;
}

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 {
	border-collapse: collapse;
	margin: 10px;
}

#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%;
}

.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;
}

td a {
	color: black;
	text-decoration: none;
}

td a:hover {
	text-decoration: underline;
}

.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;
}

#unlock-modal h2 {
	margin-top: 0;
	color: #333;
}

#unlock-modal p {
	font-size: 1.2rem;
}

.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 li {
	margin-bottom: 15px;
	display: flex;
	align-items: center;
}

.keys-list li img {
	width: 30px;
	height: 30px;
	margin-right: 10px;
}

.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;
}

.column {
	flex-direction: row;
}

input[type=checkbox] {
	transform: scale(1.5);
	margin-bottom: 10px;
}

.flex-sb {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.input-row input, select {
	flex: 2;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.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;
}

.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;
}

.form-group input[type=submit] {
	width: 100%;
	padding: 12px;
	background-color: #007bff;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.3s;
	font-weight: 700;
}

form {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	padding-bottom: 10px;
}

.button {
	padding: 10px;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 18px;
	text-align: center;
	min-width: 100px;
	font-weight: 500;
}

.modal-button {
	padding: 10px;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 18px;
	text-align: center;
	min-width: 100px;
	margin-bottom: 10px;
}

@media only screen and (max-width: 1020px) {
.table-container {
	width: 100%;
	overflow-x: auto;
}
table {
	width: 100%;
	border-collapse: collapse;
	margin: 10px;
}
}

@media only screen and (max-width: 760px) {
.legend {
	display: none;
}
button#toggle-date-filters {
	margin-bottom: 0px;
}
#svgContainer {
	min-width: 280px;
}
#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: 10px;
}
.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;
}
}

select#date_field {
	width: auto;
}


/* ==== End of shared-styles.css ==== */

/* ==== Begin from users.css ==== */

.button-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 3px 0px;
	width: 60px;
}

.button-text {
	color: white;
	font-family: Arial, sans-serif;
}

input[type=submit], input[type=button] {
	padding: 10px;
	font-size: 1rem;
	background-color: #007bff;
	color: white;
	border: none;
	cursor: pointer;
	margin-top: 10px;
	border-radius: 4px;
}

/* ==== End of users.css ==== */
