
/* CityForms Updated Theme Variables */
:root {
  --cf-color-blue: #0094da;
  --cf-color-gray: #4a4a4a;
  --cf-color-white: #ffffff;
  --cf-color-silver: #dfe3e6;
  --cf-color-green: #27ae60;
  --cf-color-orange: #f39c12;

  --cf-font-logo: 'Poppins', sans-serif;
  --cf-font-header: 'Montserrat', sans-serif;
  --cf-font-body: 'Open Sans', sans-serif;
}

body {
  font-family: var(--cf-font-body);
  background-color: var(--cf-color-white);
  color: var(--cf-color-gray);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--cf-font-header);
  color: var(--cf-color-blue);
}

a {
  color: var(--cf-color-blue);
}
a:hover {
  color: #066ea8;
}

button,
.btn,
input[type="submit"] {
  font-family: var(--cf-font-logo);
  border-radius: 6px;
  padding: 10px 16px;
}

.btn-primary {
  background-color: var(--cf-color-blue);
  color: var(--cf-color-white);
  border: none;
}
.btn-primary:hover {
  background-color: #066ea8;
}

.btn-secondary {
  background-color: var(--cf-color-gray);
  color: var(--cf-color-white);
  border: none;
}
.btn-secondary:hover {
  background-color: #2e2e2e;
}

input,
textarea,
select {
  font-family: var(--cf-font-body);
  border: 1px solid var(--cf-color-silver);
  border-radius: 6px;
  padding: 8px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--cf-color-blue);
  outline: none;
}

label {
  color: var(--cf-color-gray);
  font-size: 14px;
}

.nav-main {
  display: flex;
  justify-content: flex-start; /* left-align all items by default */
  gap: 1rem; /* optional spacing between nav items */
  width: 100%;
}
.nav-main .nav-main-item:last-child {
  margin-left: auto;
}

.token-suggestions {
  position: absolute;
  z-index: 9999;
  background: white;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  width: auto;
  max-width: 300px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.token-suggestions div {
  padding: 6px 12px;
  cursor: pointer;
}
.token-suggestions div:hover {
  background: #f0f0f0;
}

.col-form-label {
    font-weight:bold;
}

.processing-overlay {
  position: fixed; /* Changed from absolute */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.processing-message {
  font-weight: bold;
  color: #333;
}