﻿@charset "UTF-8";
:root {
  margin: 0px;
  overflow: hidden;
  font-family: helvetica Neue, sans-serif;
  --active-bkcolor: #1583b3;
  --inactive-bkcolor: #f1f2f3;
  --font-color: white;
  --font-reverse-color: black;
}

/* OVERRIDING DXEXPRESS STYLES */
.dxbl-fl {
  --dxbl-fl-caption-color: $main-font-color !important;
}

.dxbl-btn-group > .dxbl-btn.dxbl-btn-secondary {
  --dxbl-btn-bg: var(--inactive-bkcolor);
  --dxbl-btn-active-bg: var(--active-bkcolor);
  --dxbl-btn-color: var(--font-reverse-color);
  --dxbl-btn-active-color: var(--font-color);
}

.dxbl-btn:not(.dxbl-disabled):not(:disabled):hover {
  background-color: white;
  color: black;
}

.dxbl-modal {
  --dxbl-popup-bg: #1583b3;
}

.dxbl-checkbox {
  --dxbl-checkbox-switch-checked-bg: #1583b3;
  --dxbl-checkbox-switch-unchecked-bg: silver;
  --dxbl-checkbox-switch-unchecked-hover-bg: $fog-hover;
  --dxbl-checkbox-check-element-checked-color: black;
  --dxbl-checkbox-check-element-unchecked-border-width: 3px;
  --dxbl-checkbox-radio-unchecked-border-color: red;
}

.dxbl-text-edit {
  --dxbl-text-edit-bg: white;
  --dxbl-text-edit-color: black;
}

.dxbl-modal-body {
  background-color: white;
}

/* END OVERRIDING DXEXPRESS STYLES ============ */
/* WIZARD MENU */
nav {
  display: grid;
  grid: 1fr/auto-flow auto;
  box-shadow: 0 0px 0px 0 #65ABC9;
  background-color: white;
  border-width: 0px;
}

a.a-menu {
  -webkit-tap-highlight-color: transparent;
  display: grid;
  grid: 1fr/20px auto 20px;
  align-items: center;
  border: solid black;
  border-width: 0px 0;
  text-decoration: none;
}
a.a-menu:first-child {
  border-radius: 4px 0 0 4px;
  border-width: 0px 0px 0px 0px;
  grid: 1fr/auto 20px;
}
a.a-menu:last-child {
  border-radius: 0 4px 4px 0;
  border-width: 0px 0px 0px 0;
  grid: 1fr/20px auto;
}
a.a-menu:not(:first-child):before, a.a-menu:not(:last-child):after {
  display: block;
  border: 20px solid transparent;
  border-right-width: 0;
  content: "";
}
a.a-menu:not(:first-child):before {
  border-left-color: white;
}
a.a-menu:not(:last-child):after {
  transform: translateX(19px);
}

.a-menu-content {
  display: flex;
  align-items: center; /* Vertically align items */
  gap: 8px; /* Space between image and text */
}

.a-menu-title {
  line-height: 1.2rem;
  display: inline-block;
}

.a-menu-icon {
  padding: 0 0px 0 0px;
  margin-left: 10px;
  align-content: center;
  align-items: center;
  justify-content: center; /* Optional: for horizontal centering too */
}

main {
  overflow-x: unset;
}

.current {
  background-color: #1583b3;
}
.current span {
  color: black;
  background-color: #1583b3;
}
.current span:first-line {
  color: white;
}
.current:not(:first-child):before {
  border-left-color: white;
}
.current:not(:last-child):after {
  border-left-color: white;
}
.current + a:not(:first-child):before {
  border-left-color: #1583b3;
}

.next {
  background-color: white;
}
.next span {
  color: black;
  background-color: white;
}
.next span:first-line {
  color: black;
}
.next:not(:first-child):before {
  border-left-color: white;
}
.next:not(:last-child):after {
  border-left-color: white;
}
.next + a:not(:first-child):before {
  border-left-color: white;
}
.next .a-menu-title {
  color: black;
}

a.a-menu:not(.current):hover,
.done {
  background: #f1f2f3;
}
a.a-menu:not(.current):hover span,
.done span {
  color: white;
}
a.a-menu:not(.current):hover span:first-line,
.done span:first-line {
  color: black;
}
a.a-menu:not(.current):hover + a:not(:first-child):before,
.done + a:not(:first-child):before {
  border-left-color: #f1f2f3;
}
a.a-menu:not(.current):hover .a-menu-title,
.done .a-menu-title {
  color: black;
}

a.a-menu.current:hover {
  background: rgb(26.355, 164.405, 224.645);
}
a.a-menu.current:hover span {
  background-color: rgb(26.355, 164.405, 224.645);
}
a.a-menu.current:hover span:first-line {
  color: navy;
}
a.a-menu.current:hover + a:not(:first-child):before {
  border-left-color: rgb(26.355, 164.405, 224.645);
}
a.a-menu.current:hover:not(:last-child):after a.a-menu.current:hover:not(:first-child):before {
  border-left-color: rgb(26.355, 164.405, 224.645);
}
a.a-menu.current:hover + a.a-menu:not(.current):not(:first-child):before {
  border-left-color: rgb(26.355, 164.405, 224.645);
}
a.a-menu.current:hover .a-menu-title {
  color: white;
}

a.a-menu.done:hover {
  background: rgb(26.355, 164.405, 224.645);
  color: white;
}
a.a-menu.done:hover span {
  background-color: rgb(26.355, 164.405, 224.645);
}
a.a-menu.done:hover span:first-line {
  color: navy;
}
a.a-menu.done:hover + a:not(:first-child):before {
  border-left-color: rgb(26.355, 164.405, 224.645);
}
a.a-menu.done:hover:not(:last-child):after a.a-menu.done:hover:not(:first-child):before {
  border-left-color: rgb(26.355, 164.405, 224.645);
}
a.a-menu.done:hover + a.a-menu:not(.done):not(:first-child):before {
  border-left-color: rgb(26.355, 164.405, 224.645);
}

a.a-menu.done:hover {
  background: rgb(26.355, 164.405, 224.645);
}
a.a-menu.done:hover span {
  background-color: rgb(26.355, 164.405, 224.645);
}
a.a-menu.done:hover span:first-line {
  color: navy;
}
a.a-menu.done:hover + a:not(:first-child):before {
  border-left-color: rgb(26.355, 164.405, 224.645);
}
a.a-menu.done:hover:not(:last-child):after a.a-menu.done:hover:not(:first-child):before {
  border-left-color: rgb(26.355, 164.405, 224.645);
}
a.a-menu.done:hover + a.a-menu:not(.next):not(:first-child):before {
  border-left-color: rgb(26.355, 164.405, 224.645);
}
a.a-menu.done:hover .a-menu-title {
  color: var(--font-color);
}

a.a-menu.next:hover {
  background: rgb(26.355, 164.405, 224.645);
}
a.a-menu.next:hover span {
  background-color: rgb(26.355, 164.405, 224.645);
}
a.a-menu.next:hover span:first-line {
  color: navy;
}
a.a-menu.next:hover + a:not(:first-child):before {
  border-left-color: rgb(26.355, 164.405, 224.645);
}
a.a-menu.next:hover:not(:last-child):after a.a-menu.next:hover:not(:first-child):before {
  border-left-color: rgb(26.355, 164.405, 224.645);
}
a.a-menu.next:hover + a.a-menu:not(.next):not(:first-child):before {
  border-left-color: rgb(26.355, 164.405, 224.645);
}
a.a-menu.next:hover .a-menu-title {
  color: var(--font-color);
}

/* END WIZARD MENU */
body {
  background-color: white;
  color: black;
}

h1 {
  color: black;
}

h3 {
  color: black;
}

h4 {
  color: #0000b3;
}

h6 {
  color: black;
  font-size: large;
}

h1:focus {
  outline: none;
}

.param-code {
  font-weight: 600;
  font-size: large;
  color: black;
}

.param-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
}

.contact-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 20px;
}

#blazor-error-ui {
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}

.blazor-error-boundary {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
  padding: 1rem 1rem 1rem 3.7rem;
  color: white;
}

.blazor-error-boundary::after {
  content: "An error has occurred.";
}

.selected-roof {
  outline: 4px solid red;
  /* or border: 2px solid red; */
  cursor: pointer; /* nice to show clickability */
  color: black;
}

/*.tab-item {
    padding: 10px 20px;
    text-align: center;
    border-radius: 7px;
    background-color: silver;
    color: white
}

    .tab-item.active {
        background-color:  chocolate;
        color: white;
    }*/
.alert-info {
  background-color: silver;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border-color: #c3e6cb;
}

.alert-error {
  padding: 1rem;
  border: 1px solid #fca5a5;
  background-color: #fef2f2;
  color: #b91c1c;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0 4px 8px rgba(185, 28, 28, 0.1);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.alert-error .alert-heading {
  font-weight: 600;
  margin: 0;
  font-size: 1rem;
}

.card-body {
  background-color: white;
  color: black;
}

.card-header {
  background-color: #1583b3;
}

.dxbl-fl-cpt {
  color: black;
  font-weight: 600;
}

.dxbl-tabs > .dxbl-tabs-tablist.dxbl-tabs-tablist-scrollable {
  border-width: 0px;
}

.d-flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.tiles-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.tiles-container .row {
  display: flex;
  justify-content: center; /* Center items inside the row */
  align-items: center;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1200px; /* Optional: limit maximum width */
}

/* Box styling */
.tiles-container .row > div {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Nice shadow */
  border-radius: 10px; /* Rounded corners */
  overflow: hidden; /* Ensure child elements stay within rounded corners */
  margin: 10px; /* Some spacing between tiles */
  padding: 10px;
  background-color: white; /* Optional: background for better contrast */
  transition: border 0.3s, box-shadow 0.3s; /* Smooth hover effects */
}

/* Image styling */
.tiles-container img {
  border-radius: 10px; /* Images inherit box rounding */
  width: 100%;
  height: auto;
}

.tile {
  background-color: white;
  border-radius: 20px;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
  min-width: 250px;
}

.tile.active {
  border: 3px solid #e21b2b;
  background-color: rgb(205.775, 236.025, 249.225) !important;
}

/* Tile title inside box */
.tile-title {
  margin-top: 8px;
  text-align: center;
  font-size: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  white-space: normal;
  color: black;
}

/* Optional: on hover (not requested but looks good) */
.tiles-container .row > div:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.color-circle {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 10%;
  border: 1px solid #ddd;
}

.border-class {
  border: 0px solid;
  padding: 10px; /* Optional: Add padding inside the border */
  border-radius: 5px; /* Optional: Add rounded corners */
}

.square-keep-ratio {
  aspect-ratio: 1/1;
  /* Ensure it can shrink/grow according to the container’s flex width: */
  width: 100%;
  /* Optional: if you want it to fill available space, you might need display: block or flex settings. */
  display: block;
}

.responsive-square {
  /* Default (screens >= 1000px) */
  width: 767px;
  height: 767px;
}

.form-item-wrapper {
  padding: 0.5rem;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.form-item-wrapper:hover {
  background-color: #f8f9fa;
  cursor: pointer;
}

.active-member {
  background-color: #e3f2fd;
  border-left: 4px solid #2196f3;
}

/* Common styles for wizard buttons */
.btn-next,
.btn-prev,
.btn-skip {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border-radius: 10px;
  min-width: 7em;
  min-height: 3em;
  font-size: large;
  padding: 8px 20px;
  font-weight: 500;
  color: #fff;
  margin-top: 5px;
  margin-right: 5px;
}

.btn-next::after,
.btn-prev::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: solid;
  width: 8px;
  height: 8px;
  border-width: 0 2px 2px 0;
}

/* Next Button Styles */
.btn-next {
  background-color: #1583b3;
}

.btn-next:hover {
  background-color: #f1f2f3;
  color: #1583b3;
  border: solid;
  border-width: 2px;
  padding-right: 30px;
}

.btn-next::after {
  right: 15px;
  transform: translateY(-50%) rotate(-45deg);
}

/* Previous Button Styles */
.btn-prev {
  background-color: #f1f2f3;
  color: var(--font-reverse-color);
}

.btn-prev::before {
  left: 15px;
  transform: translateY(-50%) rotate(135deg);
}

.btn-prev:hover {
  background-color: #f1f2f3;
  color: black;
  border: solid;
  border-width: 2px;
  padding-left: 30px;
}

/* Skip Button Styles */
.btn-skip {
  background-color: #6c757d;
}

.btn-skip:hover {
  background-color: #5a6268;
  transform: translateY(-2px);
}

h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  line-height: 1.2;
  color: black;
}

/* =========  PROGRESS BAR=================  */
.loading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  z-index: 9999;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 500px;
  width: 90%;
  margin: 0 auto;
  padding: 40px 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.loading-left {
  width: 100%;
}

.loading-right {
  display: none;
}

.loading-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #2d3748;
  text-align: center;
}

.loading-subtitle {
  font-size: 0.95rem;
  font-weight: 400;
  margin: 0 0 20px 0;
  color: #718096;
  text-align: center;
}

.loading-features {
  display: none;
}

.loading-features > p {
  display: none;
}

.loading-features-list {
  display: none;
}

.loading-features-list li {
  display: none;
}

.loading-features-list li::before {
  display: none;
}

.loading-thank-you {
  display: none;
}

.loading-logo {
  background: #f7fafc;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e2e8f0;
  margin-bottom: 8px;
}

.logo-image {
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.progress-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 0;
}

.progress-bar-container {
  width: 100%;
  height: 6px;
  background-color: #e2e8f0;
  border-radius: 100px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #cbd5e0, #a0aec0);
  transition: width 0.3s ease;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.progress-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: #718096;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .loading-content {
    max-width: 90%;
    padding: 30px 20px;
  }

  .loading-title {
    font-size: 1.25rem;
  }

  .loading-subtitle {
    font-size: 0.875rem;
  }

  .logo-image {
    max-width: 160px;
  }
}

.responsive-popup {
  width: 90%;
  max-width: 90% !important;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 20px;
}

.contact-form-title {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

/* Divider styling */
.form-divider {
  display: flex;
  align-items: center;
  margin: 5px 0;
  color: #666;
  font-size: 14px;
}

.form-divider::before,
.form-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

.form-divider span {
  margin: 0 16px;
  background: white;
  padding: 0 8px;
}

/* Form layout improvements */
.responsive-popup .dx-formlayout {
  gap: 16px;
}

.responsive-popup .dx-formlayout-item {
  margin-bottom: 16px;
}

.responsive-popup .dx-formlayout-item-caption {
  font-weight: 500;
  color: #333;
  font-size: 14px;
  margin-bottom: 2px;
}

/* Form layout improvements */
.responsive-popup .dx-formlayout {
  gap: 16px;
}

.responsive-popup .dx-formlayout-item {
  margin-bottom: 16px;
}

.responsive-popup .dx-formlayout-item-caption {
  font-weight: 500;
  color: #333;
  font-size: 14px;
  margin-bottom: 6px;
}

.btn-submit {
  width: 280px;
  background: #1583b3 !important;
  color: white !important;
  border: none !important;
  padding: 14px 24px !important;
  border-radius: 8px !important;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 12px;
}

.btn-submit:hover {
  transform: translateY(-1px);
  background: #f1f2f3 !important;
  border-color: #1583b3 !important;
  color: #1583b3 !important;
  border: solid !important;
  border-width: 2px;
  padding-right: 30px;
}

.btn-next .fw-bold {
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn-next .fw-light {
  font-size: 13px;
  opacity: 0.9;
}

/* Large icon styling for submit button */
.btn-submit .fw-bold {
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn-submit .large-icon {
  font-size: 28px;
  color: white;
  line-height: 1;
}

/* Close button styling */
.btn-close {
  width: 100%;
  background: black !important;
  color: white !important;
  border: none !important;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-close:hover {
  background: #5a6268 !important;
}

.btn-close .fw-bold {
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn-close .fw-light {
  font-size: 13px;
  opacity: 0.9;
}

.btn-submit .large-icon {
  font-size: 28px;
  color: white;
  line-height: 1;
}

.summary-header {
  text-align: center;
  width: 100%;
  color: white;
  margin-bottom: 1rem;
}

.summary-title {
  font-weight: bold;
  width: 100%;
  color: white;
  margin-bottom: 0.5rem;
}

.summary-desc {
  font-size: 14px;
  opacity: 0.9;
  color: white;
  margin: 8px 0 0 0;
}

.form-caption-limited {
  max-width: 180px !important;
  white-space: normal !important;
  word-break: break-word !important;
}

.floating-action-panel {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-floating-action {
  min-width: 120px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-floating-action:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.grecaptcha-badge {
  visibility: hidden;
}

@media (max-width: 768px) {
  .floating-action-panel {
    right: 10px;
    bottom: 20px;
    top: auto;
    transform: none;
  }
  .btn-floating-action {
    min-width: 100px;
    font-size: 0.9rem;
  }
  .container {
    max-width: 720px;
  }
  .responsive-square {
    /* For screens < 1000px, make height equal to width */
    width: 100vw; /* or 100% if it should match its container's width */
    height: 100vw; /* ensures a square by matching width */
    max-width: 767px;
    max-height: 767px;
  }
  .tile-title {
    font-size: 1em; /* Adjust this value as needed */
  }
  .responsive-popup {
    width: 90%;
  }
  .a-menu-title {
    display: none;
  }
}
@media (max-width: 480px) {
  .container {
    max-width: 400px;
  }
  .responsive-square {
    /* For screens < 1000px, make height equal to width */
    width: 100vw; /* or 100% if it should match its container's width */
    height: 100vw; /* ensures a square by matching width */
    max-width: 767px;
    max-height: 767px;
  }
  .tile-title {
    font-size: 0.8em; /* Adjust this value as needed */
  }
  .responsive-popup {
    width: 90%;
  }
}
