/* ============================
   Global Styles
=============================== */
:root {
  --primary-color: #118AB2;
  --secondary-color: #06D6A0;
  --background-color: #F8FAFC;
  --text-color: #2D3E50;
  --cta-color: #EF476F;
  --header-footer: #073B4C;
  --accent-color: #FFD166;
  --row1-color: #fdfdfd;
  --row2-color: #f7f7f7;
  --rowborder-color: #f2f2f2;
  --rowhover-color: #fff7e5;
       --gap: 5px;
      --header-height: 40px;
      --day-height: 80px;
      --event-offset: 50;   
}

html, body {
  height: 100%;
}
main {
  flex: 1;
}

body {
  display: flex;
  flex-direction: column;
  background: var(--background-color);
  color: var(--text-color);
  font-family: Arial, sans-serif;
  margin: 0;
}

select,
input[type="text"],
input[type="password"] {
	  width: 100%;
}

select,
input[type="text"],
input[type="password"],
input[type="email"] {
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 12px;
  box-sizing: border-box;
}

hr {
  border: 0;
  border-top: 4px dashed var(--rowborder-color);
  margin: 3rem 0;
}

/* ============================
   Header Styles
=============================== */
.site-header {
  background-color: var(--primary-color);
  padding: 10px 20px;
  margin: 0 0 20px 0;
  position: relative;
  align-items: center;	
}
.header-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center; 
    position: relative;
  min-width: 0;
}
.site-header .site-name {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  margin-left: 20px;
}
.site-header .site-name a, .site-header .site-name a:hover {
  color: #fff;	
  text-decoration: none;
}

.logo-box {

}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 30px;
  width: 30px;
}


nav {
  min-width: 0;
}

.nav-divider {
  font-size: 12px;
  color: #ccc;
  pointer-events: none;
  margin: 10px 0 5px 0;
  font-weight: normal;
}

.nav-panel.show {
  display: flex;
}

.nav-section {
  margin-bottom: 15px;
}

.nav-label {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 5px;
  font-weight: bold;
}

.nav-panel a {
  display: block;
  padding: 6px 0;
  color: var(--text-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease;
}

.nav-panel a:hover {
  color: var(--primary-color);
}

.language-links {
  display: flex;
  gap: 10px;
}
.language-links a {
  display: inline-block;
}



.header-container > nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}


.hamburger {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
}

.hamburger img {
  height: 24px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.menu-label {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  padding-bottom: 1px; /* 🔥 the magic nudge */
}



.menu-text {
  display: inline-block;
}

.menu-icon {
  display: inline-block;
}


.hamburger-label {
  display: inline-block;
}




/* nav-panel hidden by default */
.nav-panel {
  display: none;
}

/* toggled open */
.nav-panel.show {
  display: flex;
  flex-direction: column;
  background: white;
  position: absolute;
  top: 48px;
  right: -20px;
  width: 120px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 1000;
   border-radius: 0 0 12px 12px; 
text-align: left;
}


	
	

.hamburger img {
  height: 30px;
}

/* ============================
   Footer Styles
=============================== */
.footer {
  margin-top: 30px;
  font-size: 14px;
  background: var(--background-color);
  color: var(--text-color);
  padding: 10px;
  text-align: center;
}

/* ============================
   Page Content Styles
=============================== */

/* Success Message Container & Close Button */
.message-container {
  max-width: 800px;
  margin: 20px auto;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: left;
  position: relative;
     padding: 15px 25px 15px 15px; 
}

.message-container.success {
  background: #dafef5;
  border: 1px solid var(--secondary-color);
  color: #024634;
}

.message-container.error {
  background: #ffe6e6;
  border: 1px solid #ffcccc;
  color: #cc0000;
}
.message-container.warning {
  background: #fff3d8;
  border: 1px solid var(--accent-color);
  color: #ad7900;
}



.message-container li {
	margin-bottom: 5px;
}

.message-container .copy-icon,
.message-container .icon-add {
  width: 14px;
  height: 14px;
  cursor: pointer;
  margin: 0 5px;
  opacity: 1;
}
.message-container .copy-icon:hover,
.message-container .icon-add:hover {
  opacity: 0.7; /* optional effect */
}



/* Close Button (restored to original) */
.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 18px;
  height: 18px;
  opacity: 0.3;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.close-button:hover {
  opacity: 1;
}

/* Main Container */
.main-container {
  max-width: 800px;
  margin: auto auto 40px auto;
  padding: 20px 15px 15px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: left;
      position: relative;
}

h2, h3,h4 {
  text-align: center;
  color: var(--text-color);
}
	
h1 {
  color: var(--primary-color);
  text-align: center;
}

.subtitle {
  text-align: center;
  font-size: 0.9em;
  margin-bottom: 30px;
  color: var(--text-color);
}

.section-title {
  font-size: 16px;
  color: var(--primary-color);
  font-weight: bold;
  margin: 5px 0 10px;
  text-align: left;
}

.description {
  font-size: 14px;
  color: gray;
  margin: 0 0 10px 10px;
  text-align: left;
}

.section-content {
  margin-left: 10px;
}

/* Property List */
.property-list {
  margin: 4px 0 12px 0;
  padding: 0;
  list-style: disc;
}

.propertyradio {
	margin-bottom: 20px;
}
.propertyradio-sub {
	margin: 10px 0 0 20px;
}
.propertyradio-sub-item {
	margin-bottom: 10px;
}

.property-name {

}

.property-option-container input[type="radio"] {
  margin-right: 10px;
}


#property-input-container input[type="text"] {
  max-width: 300px;
  width: 100%;
  box-sizing: border-box;
}
#property-input-container .subfield input[type="text"] {
  margin-left: 25px;
}

.section-content .ical-input {
  max-width: 700px !important;
  width: 100%;
  box-sizing: border-box;
}

/* Property Input and Choices */
#property-input-container {
  margin-top: 5px;
}

#property-choice {
  margin-bottom: 10px;
}

#property-choice label {
  cursor: pointer;
}

/* Form Elements */
.ical-input {
  padding-right: 8px;
  margin-bottom: 5px;
  box-sizing: border-box;
  width: 100%;
}

.add-more {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
}

.add-more:hover,
.find-ical:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.submit-button {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease-in-out;
  margin: 0;
}

.submit-button:hover {
  background: var(--secondary-color);
}


.form-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 12px;
}

/* Make disabled or “loading” button stay secondary-color */
.submit-button:disabled,
.submit-button.loading {
  background: var(--secondary-color);
  cursor: not-allowed;
}



.form-footer a.add-more,
.form-footer button.submit-button {
  display: inline-block;
  vertical-align: middle;
}

.form-footer a.add-more {
  margin-right: 10px;
}

/* iCal Section */
.ical-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 5px 10px;
}

.platform-icons {
  margin: -5px 0 0 15px;
}

.platform-icons img {
  width: 16px;
  height: 16px;
  margin-right: -2px;
}
#new-property.inactive {
  color: gray;
  /* Optionally, add additional styles to visually indicate inactivity */
}


.new-property-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.new-property-row input[type="radio"] {
  margin-bottom: 13px;
}

.new-property-row .property-label {
  margin: 0;
  padding-bottom: 10px;
  font-weight: bold;
}

.new-property-row input[type="text"] {
  max-width: 300px;
  flex: 1;
}

.note-container .icon-email-notify {
	
}

.note-container {
font-size: 12px;
margin: 20px 0;
text-align: center;

}

/* Error Messages */
#new-property-error,
#existing-property-error,
#ical-link-error {
  display: none;
  background: #ffe6e6;
  border: 1px solid #ffcccc;
  color: #cc0000;
  padding: 8px;
  margin-bottom: 10px;
  font-size: 12px;
  border-radius: 4px;
}

/* ============================
   Extra Classes for Updated HTML Structure
=============================== */
.icon-inline {
  vertical-align: middle;
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

.time-select {
  display: inline-flex;
  align-items: center;
}

.colon {
  padding: 0 5px 10px;
}

.property-label {
  font-size: 14px;
  margin: 0 10px 10px 0;
 display:inline-block; 
 font-weight: bold;
}
.existing-label {
  font-size: 14px;
  margin: 0 10px 10px 0;
 display:inline-block; 
 font-weight: bold;
}



.property-label.disabled {
color: gray;
}
.property-label:hover {
color: var(--primary-color);
}
.property-label.active {
  color: var(--primary-color);
}


.property-name:hover {

}

.property-option-container {
margin-bottom: 10px;
}

/* ============================
   Responsive Media Queries
=============================== */
@media (max-width: 600px) {
  nav ul {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: var(--primary-color);
    position: absolute;
    top: 50px;
    right: 0;
    width: 100px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Added to ensure nav appears above other elements */
  }
  nav ul.show {
    display: flex;
  }
  nav li {
    margin: 0 0 10px;
  }
  .hamburger {
    display: block;
  }
}

/* ============================
=============================== */



/* ============================
   Reservation Page Styles (Appended)
   Renamed to avoid conflicts:
     .main-container -> .reservation-container
     .subtitle -> .reservation-subtitle
=============================== */
.reservation-container {
  max-width: 800px;
  margin: auto;
  padding: 20px 20px 20px 20px;
  background: white;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: left;
  position: relative;
}

h2 {
  color: var(--primary-color);
}

.reservation-container h3 {
  text-align: center;
  color: var(--text-color);
}

.subtitle-icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin: 0 5px 3px 0;
  opacity: 0.6;
}

.expand-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 16px;
  height: 16px;
  opacity: 0.2;
  cursor: pointer;
  transition: opacity 0.2s ease;
  z-index: 2;
}

.reservation-row:hover .expand-icon,
.day-wrap:hover .expand-icon,
.day-row:hover .expand-icon{
  opacity: 1;
}

.reservation-row.selected .expand-icon,
.day-wrap.selected .expand-icon,
.day-row.selected .expand-icon {
	opacity: 1;
	cursor: default;
}


/* Reservation Row */
.reservation-row {
  padding: 12px;
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--rowborder-color);
  position: relative;
}


.reservation-row:nth-child(odd) { background-color: var(--row1-color); }
.reservation-row:nth-child(even) { background-color: var(--row2-color); }


.reservation-row:last-child {
  border-bottom: 1px solid var(--row1-color);
}
.reservation-row:hover {
cursor: pointer;
background-color: var(--rowhover-color);
}

@keyframes blink {
  0%   { background-color: #FCDAE2; }
  10%  { background-color: transparent; }
  20%  { background-color: #FCDAE2; }
  30%  { background-color: transparent; }
  40%  { background-color: #FCDAE2; }
  50%  { background-color: transparent; }
  60%  { background-color: #FCDAE2; }
  70%  { background-color: transparent; }
  80%  { background-color: #FCDAE2; }
  90%  { background-color: transparent; }
  100% { background-color: #ffe6e6; }
}

.highlight-summary .highlight { 
  animation: blink 3s ease-out forwards; 
}


@keyframes highlightSummary {
  from {
    background-color: #FCDAE2;
  }
  to {
    background-color: #ffe6e6;
  }
}


.highlight-summary .property-name {

}


/* Selected and Active Rows */
.reservation-row.today-checkout,
.reservation-row.tomorrow-checkout {

}

.reservation-row:hover {
	
}

.reservation-row.selected {
/*
  background-color: #FCDAE2 !important;
  border-color: var(--cta-color) !important;
  */
}

/* Property Info & Details */
.property-info {
  flex: 0 1 30%;
  min-width: 0;
  padding-right: 10px;
  border-right: 1px solid var(--rowborder-color);
    overflow-wrap: break-word;
  word-wrap: break-word;
}

.reservation-row.today-checkout .property-info,
.reservation-row.tomorrow-checkout .property-info {
  border-right: 1px solid var(--primary-color);
}

.reservation-row.selected .property-info {
/*
  border-right: 1px solid #EF476F;
  */
}

.reservation-details {
  flex: 1;
  padding: 0 20px 0 10px;
}
.reservation-details .check-label span {
	white-space: nowrap;	
}

.reservation-row.no-activity .reservation-details:hover {
	cursor: default;
}


.reservation-row.selected .reservation-details:hover,
.reservation-row.selected .property-info:hover {
	cursor: default;
}

/* Links and Text */
a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1.1em;
}

a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.property-status {
  display: block;
  font-size: 0.85em;
  margin-top: 4px;
  color: gray;
}

.property-status.occupied {
  color: #036C50;
}

.check-label {
  display: block;
  padding-left: 21px;
  text-indent: -21px;
  margin-bottom: 12px;
  font-size: 0.9em;
  color: var(--text-color);
}

.expand-icon {
	
}

.check-icon {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  vertical-align: top;
}

.no-data-icon {
  /* No additional styles */
}

.highlight {
  color: var(--cta-color);
  font-weight: bold;
}

.highlight-tomorrow {
	color: #523900;
	background-color: #fff5de;
}

.summary-subtitle-property {
  color: var(--cta-color);
  font-weight: bold;
white-space: nowrap;	
}



.phone,
.reservation-id,
.sub-bullet {
  overflow-wrap: break-word;
  word-wrap: break-word;
  max-width: 100%;
    text-indent: 0;
    margin-left: 5px;
    padding-left: 0;	
  font-size: 0.9em;
  margin-top: 8px;
  line-height: 1.2;
}




.sub-icon {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-right: 5px;
}


.phonex {
  color: gray;
}


.reservation-id a {
  text-decoration: none;
}

.reservation-id a:hover {
  text-decoration: underline;
}

.reservation-row .reservation-id,
.reservation-row .sub-bullet,
.reservation-row .phone,
.reservation-row .globe {
  display: none;
}


.sub-bullet.tags-found {
	  display: block !important;
	  pointer-events: none;
	  cursor: default;
    text-indent: 0;
    margin-left: 0;
    padding-left: 0;	  
}
.sub-bullet.tags-found img {
display: none;
}
.reservation-row.selected .sub-bullet.tags-found img,
.day-row.selected .sub-bullet.tags-found img,
.day-wrap.selected .sub-bullet.tags-found img,
.hidden-event-data .sub-bullet.tags-found img,
.hidden-date .sub-bullet.tags-found img {
display: inline-block;

}

.reservation-row.selected .sub-bullet.tags-found,
.day-row.selected .sub-bullet.tags-found,
.day-wrap.selected .sub-bullet.tags-found,
.hidden-event-data .sub-bullet.tags-found,
.hidden-date .sub-bullet.tags-found{
pointer-events: auto;
 cursor: default;
 margin-left: 5px;	
}

.selected .event_tag {
margin-left: 0;	
}

.event_tag {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    padding: 2px 5px;
    margin: 0 5px 3px 5px;
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    background-color: #fff5de;
    font-size: 0.9em;
    color: #523900;
    white-space: nowrap;
    overflow: hidden;
}

.tag-link img {
opacity: 0.3;
  transition: opacity 0.2s ease;
  cursor: pointer;
}
.tag-link:hover img {
	opacity: 1;
}


.reservation-row.selected .reservation-id,
.reservation-row.selected .sub-bullet,
.reservation-row.selected .phone,
.reservation-row .globe {
  display: block;
}

/* Container Icons */
.container-icons {
  position: absolute;
  top: 10px;
  right: 10px;
  margin-bottom: 5px;
}

.container-icons-left {
  position: absolute;
  top: 10px;
  left: 10px;
}

.container-icons-left img,
.container-icons img {
  width: 18px;
  height: 18px;
}

.container-menu-left .menu-text,
.container-menu-right .menu-text {
font-size: 14px;
color: #a8a8a8;
padding: 0 5px;
}

.container-menu-left:hover .menu-text,
.container-menu-right:hover .menu-text {

}

.container-menu-left img,
.container-menu-right img {
  width: 16px;
  height: 16px;
}
.container-menu-left {
  display: flex;
  justify-content: flex-start;
  width: 100%;
   margin-bottom: 10px;
}
.container-menu-left .menu-text span {
	white-space: nowrap;
}

.container-menu-right {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-bottom: 10px;
}

.menu-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}


.icon-calendar {

}

.icon-email-notify,.icon-merge {
width: 18px;
height: 18px;
}

.icon-edit,.icon-calendar,.icon-add,.icon-list {
  opacity: 0.3;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.icon-edit:hover,.icon-calendar:hover,.icon-add:hover,.icon-list:hover {
  opacity: 1;
}

.icon-edit {
width: 18px;
height: 18px;
}

.icon-edit.disabled,.icon-calendar.disabled,.icon-add.disabled,.icon-list.disabled  {
  cursor: default;
   opacity: 1;
}



   .loader-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin: 40px 0;
    }

    .loader {
      width: 40px;
      aspect-ratio: 1;
      position: relative;
      margin-bottom: 40px;
    }

    .loader::before,
    .loader::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      margin: -8px 0 0 -8px;
      width: 16px;
      aspect-ratio: 1;
      background: var(--primary-color);
      animation: l1-1 2s infinite, l1-2 .5s infinite;
    }

    .loader::after {
      background: var(--cta-color);
      animation-delay: -1s, 0s;
    }

    @keyframes l1-1 {
      0%   {top: 0;   left: 0;}
      25%  {top: 100%;left: 0;}
      50%  {top: 100%;left: 100%;}
      75%  {top: 0;   left: 100%;}
      100% {top: 0;   left: 0;}
    }

    @keyframes l1-2 {
      80%, 100% {
        transform: rotate(0.5turn);
      }
    }

    .loading-text {
      font-size: 18px;
      font-family: monospace;
      margin-left: 0.75em;
    }

    .dots::after {
      display: inline-block;
      width: 1.5em;
      text-align: left;
      content: ".";
      animation: dots 1.5s steps(3, end) infinite;
    }

    @keyframes dots {
      0%   { content: "."; }
      33%  { content: ".."; }
      66%  { content: "..."; }
      100% { content: "."; }
    }
	
#loading-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  width: 100%;
  margin: 40px 0;
  text-align: center !important;
}
#summary-page-content {
min-height: 60vh;
}


.icon-link {
  display: inline-flex;
  align-items: center;
  margin-right: 5px;
  color: var(--primary-color);
  text-decoration: none;
}

.icon-link:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

.icon-link img {
  opacity: 0.3;
  transition: opacity 0.2s ease;
}

.icon-link:hover img {
  opacity: 1;
}

.icon-text {
  margin-left: 5px;
  font-size: 14px;
  /* Inherit the color from the link so it changes on hover */
}

/* Disabled state styles – applied when extra class "disabled" is passed */
.icon-link.disabled,
.icon-text.disabled {
  color: var(--text-color); /* Normal text color */
  cursor: default;
  text-decoration: none;
}

.icon-link.disabled:hover,
.icon-text.disabled:hover {
  color: var(--text-color);
  text-decoration: none;
}



.day-row .reservation-id,
.day-row .sub-bullet,
.day-row .phone,
.day-row .globe {
  display: none;
}

.day-row.selected .reservation-id,
.day-row.selected .sub-bullet,
.day-row.selected .phone,
.day-row .globe {
  display: block;
}
.summary-container,
 .summary-container-cont {
  background-color: var(--row1-color);
  border-radius: 10px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
  margin: auto;
  display: flex;
  flex-direction: column;
border: 1px solid var(--rowborder-color);  
}



    /* For selected rows, update the separator to the selected color */
    .day-row.selected .date-info {

    }

	
/* Each day row */
.day-row {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid var(--rowborder-color);
  padding: 12px;
    position: relative;
}

.day-row:hover {
background: var(--rowhover-color) !important;
cursor: pointer;

}

.day-row:nth-child(odd) { background-color: var(--row1-color); }
.day-row:nth-child(even) { background-color: var(--row2-color); }




.day-row.no-activity,.day-row.no-activity .date-info {
color: #bcbcbc;
}

.day-row .status-icon {
  width: 16px;
  height: 16px;
  margin-right: 5px;
opacity: 0.3;
}

.day-row.no-activity:hover {
cursor: default;
}

.day-row:last-child {
  border-bottom: 1px solid var(--row1-color);
}

    .day-row.selected {
cursor: default;
    }
	

/* Define the new keyframes */
\@keyframes highlightSummary {
  from {
    background-color: #FCDAE2;
 /*    border: 1px solid var(--cta-color); */
  }
  to {
     background-color: var(--row1-color); /* off-white
 /* border: 1px solid #e0e0e0;  subtle light border */
  }
}


    /* Active rows (Today/Tomorrow) */
    .day-row.today-row,
    .day-row.tomorrow-checkout {

    }
    /* Selected row (when clicked) */
    .day-row.selected {
	cursor: default;
    }


.date-info {
  flex: 0 0 30%;
  padding-right: 10px;
  color: var(--text-color);
  font-weight: bold;
  display: flex;
  align-items: flex-start; /* aligns items to the top */
}
.weekday {
width: 40px;
}

.day-spacer {

}



   .calendar {
      width: 100%;
      max-width: 800px !important;
      display: grid;
      grid-template-columns: repeat(7, minmax(0, 1fr));
      gap: 5px;
      box-sizing: border-box;
      overflow-x: hidden;
    }
.calendar .weekday {
  font-size: clamp(12px, 2vw, 18px);
  font-weight: bold;
  text-align: center;
  padding: 5px;
  background-color: #F8FAFC;
  color: #8AA3BD;
  border-radius: 5px;
  border: 1px solid #ddd;
  width: auto;         /* Remove any fixed width */
  justify-self: stretch;  /* Force to fill the grid cell */
  align-self: stretch;
  min-width: 0;        /* Allow shrinking if necessary */
}

.day .month_abr {
  position: absolute;
  top: 3px;
  left: 5px;
  font-size: 14px;
  color: #888;
  opacity: 0.8;
  font-weight: normal;
  pointer-events: none;
}


    .day {
      position: relative;
      background: white;
      border: 1px solid #ddd;
      text-align: center;
      font-weight: bold;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      height: 80px;
      min-height: 80px;
      max-height: 80px;
      font-size: clamp(14px, 2.5vw, 18px);
      padding-top: 10px;
      border-radius: 5px;
      box-sizing: border-box;
      overflow: hidden;
    }
	.day:hover {
		cursor: pointer;
		border: 1px solid var(--cta-color);
	}

	
	
    .date-num {
      font-size: clamp(12px, 2vw, 18px);
      font-weight: bold;
      color: #333;
	  opacity: 0.5;
    }
    /* Highlight today's day number */
    .highlight {
      color: var(--cta-color);
    }
    /* New positioning for icons and numbers */
    .checkout-info {
      position: absolute;
      bottom: 5px;
      left: 10%;
      font-size: 16px;
      display: flex;
      align-items: center;
    }
    .checkin-info {
      position: absolute;
      bottom: 5px;
      right: 10%;
      font-size: 16px;
      display: flex;
      align-items: center;
    }
    .check-icon {
      vertical-align: middle;
      width: 16px;
      height: 16px;
      margin: 0 3px;
    }
	
.day-info {
  position: absolute;
  bottom: 5px;
  left: 5px;
  right: 5px;
  display: flex;
  flex-direction: column;
  height: 40px; /* fixed height container */
  gap: 3px;
}

.day-info .checkout-line,
.day-info .checkin-line {
  flex: 1;
  display: flex;
  align-items: center;       /* vertically centers content in each row */
  justify-content: flex-start; /* left-align content */
}


.checkout-line {
  min-height: 1em; /* forces a minimal height even if empty */
}

.day-info .checkout-line img,
.day-info .checkin-line img{
padding-right: 5px;

}

    .day-info .check-icon {
      vertical-align: middle;
      width: 20px;
      height: 20px;
      margin-right: 2px;
    }

	.day-info .checkout-line {
	color: var(--primary-color);
	}
	.day-info .checkin-line {
	color: #024b38;
	}	
.reservation-container .calendar {
  margin: 0 auto;
}


.checkout-line[data-value="1"],
.checkin-line[data-value="1"] {
border-radius: 5px;
}

.checkout-line[data-value="2"],
.checkin-line[data-value="2"] {
border-radius: 5px;
}

.checkout-line[data-value="3"],
.checkin-line[data-value="3"] {
border-radius: 5px;
}

.checkin-line[data-value="1"] {
background: #e5fef8;
}

.checkin-line[data-value="2"] {
background: #befded;
}

.checkin-line[data-value="3"] {
background: #86fcdd;
}

.checkout-line[data-value="1"] {
background: #f2fbfe;
}

.checkout-line[data-value="2"] {
background: #d6f2fb;
}

.checkout-line[data-value="3"] {
background: #ace4f7;
}

#hidden-data {
width: 100%;
margin: auto;	
}

#hidden-data .hidden-date {
  display: none;
   border: 1px solid #ddd;      
  border-radius: 10px;
  background-color: var(--row1-color);
  margin: 20px 0;
}
#hidden-data .hidden-event-data {
padding: 5px;
  display: none;
   border: 1px solid #ddd;      
  border-radius: 10px;
  background-color: var(--row1-color);
  margin: 20px auto;
  width: 100%;
}

.property-block:hover {
	background: var(--row2-color);
}

.property-block {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
padding: 5px;
    border-bottom: 1px solid #ddd;
}
.property-block:last-child {
  border-bottom: none;
}

.property-block .property-name {
  flex: 0 0 30%;      /* fixed width (30% of the container) */
  font-weight: bold;
  margin-right: 10px;
}

.property-block .property-activity {
  flex: 1;            /* take the remaining space */
  display: flex;
  flex-direction: column;  /* stack check-label blocks vertically */
}

.property-block .check-label {
  margin-bottom: 10px;
  font-size: 14px;
}

/* Also, style the hidden-date header */
.hidden-date-daytext {
  font-weight: bold;
  font-size: 18px;
  margin: 10px 0 30px 0;
  text-align: center;
  color: var(--cta-color);
}


.selected-day {
  border: 1px solid var(--cta-color);
  background: #FCDAE2;
}

	.selected-day .checkin-line,.selected-day .checkout-line {
	 background: #FCDAE2;
	}
	
	
.no-activity-text {
text-align: center;
margin-bottom: 20px;
}



.legend {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  font-size: 14px;
}

.legend-item {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.legend-item:last-child {
  margin-right: 0;
}

.legend-icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.legend-text {
  color: #333;
  padding-left: 5px;
}


.breadcrumb {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  font-size: 0.8em;

}
.breadcrumb .link {
	  white-space: nowrap;
}
.breadcrumb a {
  text-decoration: none;
  display: flex;
  align-items: center;
 color: var(--primary-color); 
}
.breadcrumb a:hover {
 color: var(--secondary-color); 
}

.breadcrumb .separator {
  margin: 0 8px;
  color: #888;
}

.breadcrumb .current {
	  white-space: nowrap;
}

.breadcrumb img {
  opacity: 0.3;
  transition: opacity 0.2s ease;
  margin-right: 5px;
  width: 18px;
   height: 18px;
  
}
.breadcrumb a:hover img {
	opacity: 1;
}

.pcal-container .menu-container {
max-width: 700px !important;
margin: auto;
}


    .pcal-container {
      max-width: 800px;
      margin: auto;
      padding: 30px 20px 20px 20px;
      background: white;
      box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
      border-radius: 10px;
      text-align: left;
      position: relative;
    }
    .calendar-container {
      width: 100%;
      max-width: 700px !important;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow-x: hidden;
      box-sizing: border-box;
      flex-wrap: wrap;
	  margin: auto;
    }

    .procalendar {
      position: relative;
      width: 100% !important;
      max-width: 700px !important;
      --cell-width: calc((100% - (6 * var(--gap))) / 7);
    }
    .grid-container {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: var(--gap);
    }
    .event-container {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
    }
.procalendar .weekday {
  font-size: clamp(12px, 2vw, 18px);
  font-weight: bold;
  text-align: center;
  padding: 5px;
  background-color: #F8FAFC;
  color: #8AA3BD;
  border-radius: 5px;
  border: 1px solid #ddd;
  width: auto;         /* Remove any fixed width */
  justify-self: stretch;  /* Force to fill the grid cell */
  align-self: stretch;
  min-width: 0;        /* Allow shrinking if necessary */
}
 .event:hover {
	 color: white;
 }
  .event a:hover {
  	 text-decoration: none !important;
  }
  
    .event {
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding-left: 5px;
      overflow: hidden;
      color: white;
      font-size: 0.9em;
      text-decoration: none;
      background-color: var(--primary-color);
      border-radius: 4px;
      height: 30px;
	  white-space: nowrap;
    }
    .event[normal-event] {
      background-color: var(--primary-color);
    }	
    .event[active-event] {
      background-color: var(--cta-color);
    }
    .event[inactive-event] {
      background-color: #d0f0fb;
    }
    .event[inactive-event] img {
      opacity: 0.3;
      transition: opacity 0.2s ease;
    }
    .event[data-contstart] {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
    }
    .event[data-contend] {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
    }
    .event img {
      height: 20px;
      width: auto;
      max-height: 20px;
      margin-right: 5px;
    }
    .event:hover {
      text-decoration: underline;
    }

.pcal-container h3 {
  text-align: center;
  color: var(--text-color);
}




.login-container {
  max-width: 800px;
  margin: auto auto 40px auto;
  padding: 20px 15px 15px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: left;
      position: relative;
}

  .login-container label {
    display: inline-block;

    text-align: right;
    margin-right: 10px;
  }

  .login-container input[type="text"],
  .login-container input[type="password"],
  .login-container input[type="email"] {
    width: 250px;
    padding: 5px;
  }

  .login-container input[type="submit"] {
    margin-top: 10px;
  }

  .login-container br {
    line-height: 2;
  }
  
  .login-container #email {
    max-width: 200px;
}

.login-container #password,
.login-container #confirm_password {
    max-width: 200px;
}

.section-content input[type="text"],
.section-content input[type="password"] {
  max-width: 300px;
  width: 100%;
  box-sizing: border-box;
}


.day-container {
  display: flex;
  align-items: flex-start;
}
.day-container .date-info {
	margin: 12px 0 20px 12px;
}




.property-container {
	margin: 5px 10px 5px 20px !important;
	  display: flex;
  flex-direction: row;
  align-items: flex-start;
padding: 5px;
  border-bottom: 1px solid var(--rowborder-color);
}
.property-container:last-child {
  border-bottom: none;
}

.property-container .property-activity {
  border-left: 1px solid var(--rowborder-color);
  padding-left: 5px;
}

.property-container .property-name {
	font-weight: normal !important;
}
.day-container.no-activity .weekday,
.day-container.no-activity .month-day {
color: #bcbcbc;
}

.day-container .no-activity-text {
display: flex;
  flex-direction: row;
  align-items: flex-start;
  	margin-top: 12px;
color: #bcbcbc;	
}
.day-wrap:nth-child(odd) { background-color: var(--row1-color); }
.day-wrap:nth-child(even) { background-color: var(--row2-color); }

.day-wrap:last-child {
  border-bottom: 1px solid var(--row1-color);
}

.day-wrap:hover {
	background: var(--rowhover-color);
	cursor: pointer;
}
.day-wrap {	
  position: relative;
}
.day-wrap .day-container.no-activity:hover {
cursor: default;
}

.property-container .property-info {
  flex: 0 0 30%;
	padding-right: 10px;
}


.day-container.no-activity .reservation-details:hover {
	cursor: default;
}
.day-wrap.selected {
cursor: default;	
}


.day-wrap .reservation-id,
.day-wrap .sub-bullet,
.day-wrap .phone,
.day-wrap .globe {
  display: none;
}

.day-wrap.selected .reservation-id,
.day-wrap.selected .sub-bullet,
.day-wrap.selected .phone,
.day-wrap .globe {
  display: block;
}


  .interrupter {
      margin: 20px 5px;
	  font-size: 14px;
color: #a8a8a8;
    }

.refresh-container {
  max-width: 800px;
  margin: 0 auto 10px auto;
  text-align: center;
  position: relative;
  	  font-size: 14px;
color: #a8a8a8;
}
.refresh-container .icon-text {
	font-size: 14px;
	color: #a8a8a8;
	margin-top:1px;
}


.refresh-container .icon-text:hover {
	color: var(--secondary-color);
}

.refresh-container .icon-link img {
  width: 12px;
  height: 12px;
}


  .email-form-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
  }

  .email-form-footer a.no-thanks {
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
    padding-top: 3px;
  }

  .email-form-footer a.no-thanks:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }

 
  .question-container {
	  margin-bottom: 50px;
	  
  }
  
    .question-container h2 {
	margin-bottom: 20px;
	text-align: left;
	}
	.question-container .answer {
	line-height: 1.5;
	}

.faq-sub-description {
  text-align: center;
  font-size: 1.1em;
  color: #666;
  margin: -10px 0 30px 0;
}

.faq-category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.faq-category-pill {
  display: flex;
  align-items: center; 
  justify-content: center; 
  padding: 10px 16px;
  background-color: var(--row1-color);
  border-radius: 10px;
  border: 1px solid var(--rowborder-color);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: var(--primary-color);
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  transition: background-color 0.2s ease;
  height: 40px;

}


.faq-category-pill:hover {
  background-color: var(--rowhover-color);
}

.main-container.terms h2,
.main-container.privacy h2,
.main-container.privacy h3 {
	text-align: left;
}


/* ==== FOOTER STYLES ==== */
.footer {
  background: var(--primary-color); /* same dark blue as header */
  color: white;
  padding: 30px 15px;
  font-size: 14px;
  text-align: center;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 15px;
}

.footer-section {
  min-width: 150px;
  text-align: left;
}

.footer-title {
  font-weight: bold;
  margin-bottom: 12px;
}


.footer a {
  display: block;
  color: #FFD166;
  text-decoration: none;
  margin: 2px 0;
  font-weight: normal;
}

.footer a:hover {
  color: white;
  text-decoration: underline;
}

.footer-note {
  font-size: 13px;
  opacity: 0.9;
  margin-top: 20px;
}

@media (max-width: 600px) {
  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-section {
    flex: 0 1 45%;
    text-align: left;
  }
}


  .auto-width {
    width: auto;
  }
  
  .flex-center {
    display: flex;
    align-items: center;
  }
  
  .font-14 {
    font-size: 14px;
  }
  
   .subscribe-container {
    max-width: 800px;
    margin: 10px auto 20px auto;
    padding: 15px;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    text-align: left;
  }

.subscribe-container .section-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px; /* space between input and button */
  margin: 0 auto;
}

.subscribe-container input[type="email"] {
margin: 0;
}

  .topmain-container {
    max-width: 800px;
    margin: 10px auto 30px auto;
    padding: 15px;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    text-align: left;
  }
  
  .calendar-label-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .calendar-input-wrapper {
    padding-right: 15px;
  }
  .input-label {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 10px;
  }
  
  /* Color change for calendar link input */
  input[name="calendar-link"] {
    color: lightgray;
  }
  input[name="calendar-link"]:focus {
    color: black;
  }
  
  /* Add Calendar link (unique landing page look) */
  .add-calendar {
    display: block;
    font-size: 14px;
    color: var(--primary-color);
    margin-top: 5px;
    text-decoration: none;
  }
  .add-calendar:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }
  
  /* Rename platform icons to avoid conflict with reservation styling */
  .landing-platform-icons {
    display: flex;
    gap: 3px;
    margin-left: auto;
    margin-bottom: 10px;
  }
  .landing-platform-icons img {
    width: 16px;
    height: 16px;
  }
  .landing-platform-icons img:hover {
    filter: grayscale(0%);
    opacity: 1;
  }
  
  /* Footer links unique to this page */
  .form-footer {
    text-align: left;
  }
  .form-footer a.add-more {
    margin-right: 0;
  }

.find-ical {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.find-ical:hover {
  text-decoration: underline;
}

.find-ical .link-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
}
.find-ical .calendar-icon {
  margin-right: 0;
}
.find-ical .link-icon {
      width: 24px;
    height: 24px;
  }
  
  

  .checkouts {
    color: var(--cta-color);
    white-space: nowrap;
  }
  
.view-sample-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  gap: 10px;
}


.view-sample-container .view-sample:hover {
  background-color: var(--secondary-color, #555);
  color: #fff;
}

.view-sample {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--cta-color);
  color: #fff;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
  margin-bottom: 10px;
  }

.view-sample:hover {
  background-color: var(--secondary-color, #555);
  color: #fff;
  text-decoration: none;
}
  
  /* Icon list for features */
  .icon-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }
  .icon-bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #F8FAFC;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease-in-out;
  }
  .icon-bullet-item:hover {
    transform: translateY(-3px);
  }
  .list-icon {
    width: 40px;
    height: 40px;
    margin-top: 5px;
    transition: transform 0.3s ease-in-out, filter 0.3s;
  }

  .icon-bullet-item:hover .list-icon {
    transform: scale(1.1);
    filter: brightness(1.2);
  }
  .icon-bullet-text {
    display: flex;
    flex-direction: column;
	text-align: left;
  }
  .icon-bullet-text h3 {
    margin: 0;
    font-size: 18px;
text-align: left;
    color: var(--text-color);
  }
  .icon-bullet-text p {
    margin: 5px 0 0;
    font-size: 14px;
    color: var(--text-color);
  }
  
  .check-group {
    display: flex;
    flex-direction: column;
  }
  
  .check-group:first-child {
    white-space: nowrap;
    margin-right: 10px;
  }
  
  .topmain-container h1 span {
    white-space: nowrap;
  }
  

  .check-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
  }
  

  .time-inputs {
  display: flex;
  gap: 5px;
  }
  .time-inputs select:first-child {
  margin-right: 5px;
}


  .submit-container {
    display: flex;
    align-items: center;
    flex: 0 1 auto;
	margin: 13px 0 0 20px;
  }
  

  .check-container .add-more {
    margin-left: 0;
    flex: 0 1 auto;
  }
  

  @media (max-width: 600px) {
    .check-container .add-more {
      width: 100%;
      text-align: left;
      margin-top: 10px;
    }
  }
  
  /* Other container styles */
  .input-group {
    display: flex;
    flex-direction: column;
  }
   .input-group input,
  .calendar-input-wrapper input {
    width: 100%;
    margin-bottom: 8px;
  }
  
  .input-container {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 10px;
  }
  

  .time-inputs,
  .input-group {
    flex: 0 1 165px;
    width: auto;
    min-width: 100px;
  }
  
  
  .input-group-calendar-field {
    flex: 1 1 auto;
    min-width: 150px;
  }
  
.find-ical {
margin-top: 10px;
}
.help-icon img {
width: 14px;
height: 14px;
opacity: 0.3;
transition: opacity 0.2s ease;
margin-left: 5px;
}
.help-icon:hover img{
opacity: 1;
}



.testimonial-full-container {
  padding: 0 20px 50px 20px;
  text-align: center;
}

.testimonial-full-container h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-style: italic;
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-quote p {
  margin: 10px 0;
}

.testimonial-author {
  margin-top: 20px;
  font-weight: bold;
  font-style: normal;
}


