* {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

:root {
  --primary: #3a164e;
  --white: #fff;
  --border: #e0e0e0;
}

body {
  background-color: #c4c5c6;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding: 0;
  margin: 0;
}

.pwa-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}
.main {
  min-height: 100vh !important;
}
.main-section {
  width: 400px;
  max-width: 100%;
  background-color: #fbfbfb;
  position: relative;

  /* padding: 0px 1.3rem; */
}
.app_padding {
  padding: 0px 1.2rem;
}
header {
  padding: 0px 1.2rem;
  padding-bottom: 5px;
  background-color: white;
}

.badge {
  padding: 10px;
  height: min-content;
}
.uppercase {
  text-transform: uppercase;
}

/* --------font-sizes classes------------ */

.fs_10 {
  font-size: 10px;
}
.fs_12 {
  font-size: 12px;
}
.fs_14 {
  font-size: 14px;
}
.fs_16 {
  font-size: 16px;
}
.fs_18 {
  font-size: 18px;
}
.fs_20 {
  font-size: 20px;
}
.fs_22 {
  font-size: 22px;
}
.fs_24 {
  font-size: 24px;
}
.fs_26 {
  font-size: 26px;
}
.fs_28 {
  font-size: 28px;
}
.fs_30 {
  font-size: 30px;
}
.fs_32 {
  font-size: 32px;
}
.fs_34 {
  font-size: 34px;
}
.fs_36 {
  font-size: 36px;
}
.fs_38 {
  font-size: 38px;
}
.fs_40 {
  font-size: 40px;
}
.fs_42 {
  font-size: 42px;
}
.fs_44 {
  font-size: 44px;
}
.fs_46 {
  font-size: 46px;
}
.fs_48 {
  font-size: 48px;
}
.fs_50 {
  font-size: 50px;
}
.fs_52 {
  font-size: 52px;
}
.fs_54 {
  font-size: 54px;
}
.fs_56 {
  font-size: 56px;
}
.fs_58 {
  font-size: 58px;
}
.fs_60 {
  font-size: 60px;
}

footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  background-color: #fbfbfb;
  border-top: 1px solid var(--border);
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
.footer_grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* 2 equal columns */
  gap: 10px;
  padding: 10px 10px;
}

.primary_btn {
  background-color: var(--primary);
  color: var(--white);
  font-size: 16px;
  padding: 10px;
  border-radius: 8px;
  border: none;
}

/* Hide map controls */
.map-container iframe {
  pointer-events: none;
}

.map-container {
  position: relative;
  overflow: hidden;
}

.map-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  pointer-events: none;
}

/* Hide zoom controls and other UI elements */
.gm-style-cc,
.gm-style-mtc,
.gmnoprint,
.gm-bundled-control,
.gm-control-active {
  display: none !important;
}

/* Loader styles */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  flex-direction: column;
}

.loader-text {
  margin-top: 15px;
  color: var(--primary);
  font-weight: 500;
}

/* Share button styles */
.share-btn {
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: max-content;
}

.share-btn:hover {
  background-color: rgba(37, 99, 235, 0.1);
  transform: scale(1.1);
}

/* Toast notification styles */
.toast-notification {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #28a745;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

.toast-notification.show {
  opacity: 1;
}

/* Default avatar styles */
.default-avatar {
  width: 50px;
  height: 50px;
  background: #e9ecef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 20px;
  border: 2px solid #dee2e6;
}

.contact-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #dee2e6;
}
.btn-close{
    background-size: 15px;
}

.offcanvas-title{
    font-size: 22px ;
    font-weight: bold;
    margin: auto;
}
.offcanvas {
  max-width: 400px;
  height: 31%;
  min-height: 31%;
  margin: auto;
  z-index: 99999;
  /* right: 15px !important; */
}


.app-download-banner {
  background: linear-gradient(135deg, #3a164e, #2a1137ff);
  border-radius: 12px;
  padding: 16px;
  margin: 20px 0;
  color: white;
  box-shadow: 0 4px 12px #61467096;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.banner-icon {
  font-size: 24px;
  color: white;
}

.banner-text {
  flex: 1;
}

.banner-text h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.banner-text p {
  margin: 0;
  font-size: 12px;
  opacity: 0.9;
}

.banner-content .btn {
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.banner-content .btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.toast-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #2563eb;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.toast-notification.show {
  transform: translateX(0);
}

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.loader-text {
  margin-top: 15px;
  color: #666;
  font-size: 14px;
}

.banner img{
  height:230px;
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width: 600px) {
  .pwa-container {
    width: 100%;
  }

  .main-section {
    width: 100% !important;
  }

  .app-title {
    font-size: 1.5rem;
  }
  footer {
    width: 100%;
  }
  .offcanvas {
  max-width: 100%;
}
}
