#mapCanvas {
  width: 100%;
  height: 100%;
  float: left;
}
#infoPanel {
  float: left;
  margin-left: 10px;
}
#infoPanel div {
  margin-bottom: 5px;
}
#pull-page-title {
  display: inline-block;
  margin-left: 20px;
}

.rows {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.columnSearchTerm {
  width: 100%;
}

.columnBusinessName {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 2.5;
}

.columnBtn {
  display: flex;
  flex-direction: column;
  flex-basis: 30%;
  flex: 0.6;
  margin-top: 12px;
}

#txtSearchTerm {
  border: 2px solid #a6653c;
  border-radius: 4px;
  outline: none;
  box-shadow: none;
}

#txtSearchTerm:focus {
  border-color: #8b542f;
}

#map-section {
  border: 2px solid #a6653c;
  border-radius: 4px;
}

#map-section b {
  font-weight: bold;
}

.template-right-clone {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 45vh;
  min-height: 500px;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 7px 7px 20px -5px rgba(0, 0, 0, 0.1);
}

.white-box.full-width {
  width: 100%;
  left: -12px;
  position: relative;
}

body {
  background-color: #fbf3f0;
}

#pull-page-title {
  display: inline-block;
  margin-left: 20px;
  font-size: 18px;
  font-weight: 600;
}

#business-name {
  margin: 0;
  margin-top: 10px;
  font-weight: bold;
}

.gm-style .gm-style-iw-d::-webkit-scrollbar-track,
.gm-style .gm-style-iw-d::-webkit-scrollbar-track-piece,
.gm-style .gm-style-iw-c,
.gm-style .gm-style-iw-t::after,
.poi-info-window > div,
.poi-info-window > div > div,
.address > div,
.view-link > a {
  background: #f5e8e2;
}

/* override the map infowindow to reduce empty space */
.gm-style .gm-style-iw > div > button
 {
  width: 15px !important;
  height: 15px !important;
  padding-top: 5px !important;
  margin-right: 5px !important;
 }

 .gm-style .gm-style-iw > div > button > span
 {
  width: 15px !important;
  height: 15px !important;
  margin: 0 !important;
 }
/******************************************************/


.theme-button{
  background-color: rgb(229, 227, 218);
  color: #000;  
  font-size: 13px;

}

.display-inline {
  display: inline-block;
}

#account-information-button {
  opacity: 100%;
}

#upgrade-button {
  opacity: 100%;
}

.no-underline:hover{
  text-decoration: none !important;
}

.business-list-link {
  position: absolute;
  width: 100% !important;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

#rank-list > ul > li:hover {
  background-color: #fbf3f0;
}

#main-section {
  margin-top: 40px;
}


@media print {

  @page {
      size: 11in 17in;
      margin: 0;
  }

  body {
      margin: 0;
      padding: 0;
  }

  .no-print, .no-print * {
      display: none !important;
  }

  .tooltip-inner{
    display: none !important;
  }

  #main-section {
    padding: 0px !important;
  }

}


.footer-center {
  text-align: center; /* Centers text within the div */
  width: 100%;        /* Ensures each div is full width */
  display: block;     /* Ensures each div is displayed as a block element */
}

.styled-checkbox {
  accent-color: #a6653c;
}

.business-center-display-label {
  position: relative;
  top: 20px; /* Increased from 20px to 25px */

  background-color: white;
  padding: 2px 5px;
  border-radius: 3px;
  box-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  white-space: nowrap; /* Prevent line breaks in the label */
}


#distance-info {
  font-size: 14px;
}

#btnSearchBusiness {
  color: #ffffff;
  background-color: #a6653c;
  border-radius: 4px;
  font-weight: 500;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(166, 101, 60, 0.2);
}

#btnSearchBusiness:hover {
  background-color: #8b542f;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(166, 101, 60, 0.3);
}

#service-area-message{
  text-align: center;
  font-size: 14px;
}

/* Teleport page specific overrides for rank-list styling */
#rank-list > ul > li.active {
  background-color: #f5e8e2;
}

#rank-list > ul > li.active h6,
#rank-list > ul > li.active span,
#rank-list > ul > li.active h2 {
  color: #a6653c !important;
}

#rank-list::-webkit-scrollbar-thumb {
  background-color: #a6653c;
  border-radius: 8px;
  border: 3px solid #ffffff;
}

/* Loading overlay styles */
#teleport-initial-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 9998;
}

/* Spinner animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}