@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=MuseoModerno:wght@500&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
}

body a {
    color:#3f3f3f;
}

.overlay {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
    z-index: 1000; /* Above other content */
    justify-content: center;
    align-items: center;
}

.popup {
    background-color: white;
    border-radius: 10px;
    padding: 35px;
    max-width: 700px;
    min-height: 400px;
    width: 90%; /* Responsive width */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Shadow for depth */
    text-align: center;
}

header {
    /*background: linear-gradient(to right, #004bbbc9 0%, #004bbbc9 40%, #ffffff 60%, #ffffff 100%); /* Gradient background */
    font-family: Helvetica, Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.horizontal_bar_gap {
    background-color: #ccc; /* Gray background color */
    height: 2px; /* Adjust the height of the bar as needed */
    margin: 20px 0; /* Adjust the margin as needed */
  }

.horizontal_bar {
    background-color: #e4e4e4; /* Gray background color */
    height: 2px; /* Adjust the height of the bar as needed */
    margin: 0 0 20px 0; /* Adjust the margin as needed */
  }

.horizontal_bar_smallonly{
    display:none;
}

/* Style for the "Doorbll" text on the left (logo) */
.logo {
    font-size: 34px; /* Adjust the font size as needed */
    font-weight: bold;
    font-family: 'MuseoModerno', cursive;
    color: rgb(15, 62, 134);
    margin: 0; /* Remove the left margin */
    padding: 10px 0; /* Add padding for spacing */
    margin-left:70px;
}

.logo a {
    text-decoration: none;
}

/* Style for the navigation links on the right */
.nav-links {
    list-style: none;
    font-weight: 500;
    font-size:17px;
    display: flex;
    margin-right: 80px;
}

.nav-links li {
    display: inline;
    margin-right: 40px; /* Adjust the spacing between links */
}

.nav-links a {
    text-decoration: none;
    color: rgb(31, 31, 31);
    position: relative;
}

.nav-links a::before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: rgb(124, 124, 124);
    transform: translateX(-50%);
    transition: width 0.3s ease-in-out;
}

.nav-links a:hover::before {
    width: 110%;
}

#menu_hamburger {
    display: none;
    cursor: pointer;
    font-size:30px;
    color:#3d3d3d;
}

#hamburger_dropdown {
    list-style: none;
    text-align:center;
    font-family: Helvetica, Arial, sans-serif;
    font-weight:500;
    font-size:17px;
    margin-top:0px;
    background-color: #f1eeee;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

#hamburger_dropdown li {
    padding:10px;
}

#hamburger_dropdown a {
    text-decoration: none;
    color: rgb(31, 31, 31);
}

.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    color: #333;
    padding: 20px;
    border: 2px solid #ccc;
    border-radius: 10px;
    max-width:400px;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

#cookieConsent22 {
    display: none;
}

.cookie-mess {
    font-size: 15px;
    color: #333;
    margin-bottom: 15px;
}

.cookie-buttons {
    text-align: right;
}
.cookie-buttons .cookie-btn {
    cursor: pointer;
    padding: 10px 20px;
    outline: none;
    font-size: 16px;
    padding: 10px;
    border: none;
    margin-right:10px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
}
.cookie-accept {
    background: linear-gradient(to bottom, #0074d9, #0056b3);
    color: #fff;
}
.cookie-decline {
    background: linear-gradient(to bottom, #d8d8d8, #bebebe);
    color: #858585;
}

.error_title {
    font-size:34px;
    color:crimson;
    font-weight:700;
    margin:40px;
    padding-top:30px;
}

.error_main p {
    line-height:2;
    color: black;
    font-size:16px;
    margin:20px;
    margin-left:40px;
}

.centered_div {
    max-width:880px;
    margin: 0 auto;
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size:13px;
}

.form-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(216, 221, 248);
    padding:9px;
    font-size:13px;
    border-radius: 7px;
    margin-top:60px;
}

.custom_submit {
    padding: 10px;
    background: linear-gradient(to bottom, #0074d9, #0056b3);
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    align-self: center;
    text-decoration: none;
    min-width: 120px;
    /*width: 120px;*/
}

.custom_submit:hover {
    background: linear-gradient(to bottom, #0b64b1, #014288);
}

.custom_submit {
    padding: 10px;
    background: linear-gradient(to bottom, #0074d9, #0056b3);
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    align-self: center;
    text-decoration: none;
    min-width: 120px;
    /*width: 120px;*/
}

.generate_custom_submit {
    padding: 9px 14px;
    border: 1px solid #fdfae7;
    background-color: rgba(255, 255, 255, 0.15);
    color: #fdfae7;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    display: block;
    text-decoration: none;
    /*min-width: 120px;*/
    margin:0 auto;
    min-width: 158px;
    /*transition: background 0.9s ease, color 0.6s; */
}

/* Add hover effect */
.generate_custom_submit:hover {
    /*background: linear-gradient(to bottom right, rgb(245, 224, 133), #e9a251); */
    background: linear-gradient(to bottom right, rgb(242, 246, 250), #9ab3e4);
    /*background-color: rgba(255, 255, 255, 0.75);*/
    color:rgb(31, 31, 31);
    /*border: 1px solid rgb(31, 31, 31);*/
}

.spinner {
    display: none;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #dddddd;
    border-radius: 100%;
    width: 8px;
    height: 8px;
    animation: spin 0.8s linear infinite;
    margin-left: 10px;
}

.spinner_dark {
    display: none;
    border: 6px solid #618ac7;
    border-top: 6px solid #3b5a88;
    border-radius: 100%;
    width: 14px;
    height: 14px;
    animation: spin 0.8s linear infinite;
    margin-left: 0px;
    margin-top: 20px;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form_text_input {
    font-size:15px;
    padding:11px;
    width:100%;
    box-sizing: border-box;
    border-radius: 4px;
    background-color: rgb(249, 252, 255);
    border: 1px solid #808080;
}

.dropdown-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 93%;
    padding: 10px;
}

.dropdown-container label {
    margin-bottom: 5px;
}

.dropdown-container select {
    width: 100%;
    padding: 8px; /* Adjust the padding as needed */
    background-color: white;
    border: 1px solid #808080;
    box-sizing: border-box;
    left: 20px;
}

.suggestion-box {
    display: none;
    position: absolute;
    margin-top:3px;
    width: 100%;
    border: 1px solid #ccc;
    background-color: white;
    font-size:14px;
    font-family: Arial, Helvetica, sans-serif;
    z-index: 100;
    /*max-height: 150px; /* Set a fixed height for the suggestion box */
    /*overflow-y: auto; /* Allow scrolling if content exceeds the fixed height */
}

/* Style each suggestion item */
.suggestion-item {
    padding: 6px;
    cursor: pointer;

}

.suggestion-item img {
    padding: 0px;
    margin-right:5px;
    margin-top:4px;
    height:12px;
    width:18px;
    cursor: pointer;

}

/* Highlight suggestion item on hover */
.suggestion-item:hover {
    background-color: #f2f2f2;
}

.suggestion_request {
    background-color: rgb(227, 232, 241);
    padding:4px;
    color:#5596db;
    text-align:right;
    padding-right:10px;
}

.suggestion_request a {
    text-decoration: none;
}

.download_raw_option {
    text-align:right;
    font-size:11px;
    margin-right:10px;
    margin-top:2px;
}

.scroller_intro {
    margin: 0 auto;
    display: flex;
    min-height: 360px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-image: url('worldmap3.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position-y: 12px; 
    background-position: center center;
    position: relative;
}

.scroller_text {
    font-family: 'MuseoModerno', cursive;
    font-size: 32px;
    margin: 90px auto 50px;
    max-width:450px;
    color:#3d3d3d;
}

.scroller_error {
    font-family: 'MuseoModerno', cursive;
    font-size: 32px;
    margin: 110px auto 50px;
    max-width:450px;
    color:#ac0b13;
}

.scroller_subtext {
    font-size: 17px;
    margin: 5px auto 75px;
    max-width:520px;
    color:#3d3d3d;
}

.home_listing_new {
    flex: 1 0 calc(33.33% - 260px); /* Adjust as needed */
    margin: 5px 15px; /* Adjust spacing as needed */
    border: 1px solid rgb(211, 211, 211);
    border-radius: 4px;
    padding:15px 22px 11px;
    min-width: 180px;
    max-width: 260px;
    height: 90px;
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center;
}

.home_listing_container {
    display: flex;
    flex-wrap: wrap;
    max-width: 800px;
    align-items: flex-start;
    margin: 0 auto 25px;
}

.home_listing_new_title {
    font-size:17px;
    color: #e7e7e7;
    background-color: rgba(46, 46, 46, 0.81); 
    padding: 3px 8px 3px 8px;
    display: inline-block;
    font-weight: 550;
}

.home_listing_new_subtitle {
    font-size:10px;
    color: #e7e7e7;
    background-color: rgba(46, 46, 46, 0.81); 
    padding: 3px 8px 3px 8px;
    display: block;
    font-weight: 500;
    margin-top:8px;
    max-width: 104px;
}

.home_listing_new_subtitle p {
    margin: 2px 0px;
}

@media (max-width: 590px) {   
    .scroller_text {
        margin: 75px auto 25px;
    }
    
    .scroller_subtext {
        margin: 10px auto 20px;
    }

    .scroller_intro {
        min-height: 300px;
    }
}

@media (max-width: 820px) {
    .home_listing_container {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        width: 300px;
    }

    .home_listing_new {
        flex-basis: 100%;
        width: 260px;
    }
}

/* For homepage animation */
.scroller {
    height: 1.2em;
    line-height: 1.2em;
    margin-top:6px;
    position: relative;
    overflow: hidden;
    color:#618ac7;
  }
  .scroller > span {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: slide 7s infinite 2s;
    font-weight: bold;
    
  }
  @keyframes slide {
    0% {
      top: 0;
    }
    16.6% {
      top: -1.2em;
    }
    33.3% {
      top: -2.4em;
    }
    50% {
      top: -3.6em;
    }
    66.6% {
        top: -4.8em;
    }
    83.3% {
        top: -6.0em;
    }
    100% {
      top: -7.2em;
    }
  }

  
/* Media query for mobile screens (adjust max-width as needed) */
@media (max-width: 700px) {   
    .logo {
        font-size: 34px;
        text-align: center;
        margin: 0 auto;
    }

    .nav-links {
        display: none;
    }

    #menu_hamburger {
        display: flex;
    }

    #hamburger_dropdown.show {
        max-height: 200px;
    }
}

.report_container {
    color:#3f3f3f;
    margin-top:12px;
    padding:58px 30px;
    flex-wrap: wrap;
    background-size: cover;
    background-position: center;
    border: #c2c2c2 1px solid;
    border-radius: 6px;
}

.fadein {
    display:flex;
    width: 100%;
    position: relative;    
}

.fadein img {
    position: absolute;
    animation-name: fade;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 32s;
    animation-name: fade;
    animation-iteration-count: infinite;
    animation-duration: 32s;
    height: 200px;
    width: 100%;
    object-fit: cover;
    border: #c2c2c2 1px solid;
    border-radius: 12px;
}

@-webkit-keyframes fade {
    0% {opacity: 0;}
    20% {opacity: 1;}
    33% {opacity: 1;}
    53% {opacity: 0;}
    100% {opacity: 0;}
}
@keyframes fade {
    0% {opacity: 0;}
    20% {opacity: 1;}
    33% {opacity: 1;}
    53% {opacity: 0;}
    100% {opacity: 0;}
}

#f1 {
}
#f2 {
    -webkit-animation-delay: -8s;
}
#f3 {
    -webkit-animation-delay: -16s;
}
#f4 {
    -webkit-animation-delay: -24s;
}

.fadein_text {
    position: absolute;
    top: 35px;
    left: 60px;
    z-index: 100;
    font-size: 28px;
    /*background-color:rgba(0, 0, 0, 0.75);*/
    color:rgb(241, 241, 241);
    padding: 0px 15px;
    white-space: initial;
    max-width: 600px;
    background-color: rgba(0, 0, 0, 0.75); /* Background color for each line */
    line-height: 60px; /* Adjust line height as needed */
    display: inline-block;
}

.fadein_text2 {
    top: 104px;
}


@media (max-width: 699px) {
    .fadein_text {
        font-size: 21px;
        max-width: 365px;
        left: 20px;
    }
}

.report_title {
    font-size:40px;
    color: #e7e7e7;
    background-color: rgba(61, 61, 61, 0.8); 
    padding: 11px 14px 9px 14px;
    display: inline-block;
}

.report_resultscount {
    font-size: 22px;
    text-align: left;
    padding-top:15px;
    padding-right:3px;
    flex: 1;
}

.result_lastupdated {
    font-size:11px;
    margin-top:4px;
}

.overview_text {
    margin:20px 36px 48px 36px;
    font-size:16px;
    line-height:1.4;
}

.overview_text p {
    /*padding: 0px;
    margin: 0;*/
}

.overview_title {
    font-size:18px;
    margin-top:42px;
    font-weight:600;
}

.review_overview_text {
    margin:26px 10px 18px 10px;
    font-size:16px;
    line-height:1.4;
    text-align: justify;
}

.review_overview_text_airbnbonly {
    padding: 0px 30px;
    margin-bottom: 35px;
    margin-top: -8px;
    font-size:14px;
    line-height:1.4;
    text-align: justify;
}

#download_data_row {
    font-size:16px;
    font-weight:400;
    color: #9b9b9b;
    padding: 7px 12px;
    width:134px;
    height:18px;
    margin-top: 12px;
    margin-left: auto;
    border: 1px solid #9b9b9b; /* Gray border */
    border-radius: 10px; /* Rounded corners */
    text-align: right;
    cursor: pointer;
    display:flex;
}

.download_data_requestpage {
    font-size:15px;
    font-weight:400;
    color: #9b9b9b;
    padding: 10px 15px;
    text-decoration: none;
    height:18px;
    margin-top: 6px;
    background-color: white;
    border: 1px solid #bebebe; /* Gray border */
    border-radius: 8px; /* Rounded corners */
    text-align: right;
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.download_data_requestpage:hover {
    background: linear-gradient(to bottom, #fffbfb, #e8ecff);
    color:#7c7c7c;
}

.filter_row {
    font-size:16px;
    font-weight:400;
    color: #9b9b9b;
    padding: 7px 12px;
    width:63px;
    height:18px;
    margin-top: 12px;
    border: 1px solid #9b9b9b; /* Gray border */
    border-radius: 10px; /* Rounded corners */
    text-align: right;
    margin-left: 8px;
    cursor: pointer;
    display:flex;
}

#filter_menu_display {
    font-size:14px;
    color:#797979;
    margin-top:18px;
    line-height: 2.4;
    background-color: #f1f1f1;
    padding:10px 25px 8px;
    margin-bottom:-15px;
    border-radius: 10px;
    display: none;
    text-align: right;
}

.filter_disabled {
    opacity: 0.5;  /* Makes it look greyed out */
    pointer-events: none; /* Prevents interaction */
}

#filter_menu_display.active {
    display: block;
    margin-right:0 auto;
    transition: 4s ease-in-out;
}

.filter_menu_element {
    margin-left:22px;
    margin-right:18px;
    width: 41%;
    display: inline-block;
}

@media (max-width: 900px) {
    .filter_menu_element {
        width:90%;
    }
}

select {
    padding: 4px 9px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #797979;
    margin-left:6px;
    margin-right: 10px;
    min-width:80px;
}

.apply_filter_btn {
    padding: 6px;
    background: linear-gradient(to bottom, #646464, #8d8d8d);
    border: none;
    border-radius: 4px;
    display: block;
    color: white;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    min-width: 80px;
    margin-left:auto;
    margin-right:28px;
    margin-top:7px;
    margin-bottom:7px;
}

#map {
    height: 400px;
    padding: 0;
    margin-top:25px;
    margin-left:23px;
    margin-right:23px;
    border:#585858 1px solid;
}

#map_subtitle_container {
    margin-left:23px;
    margin-right:23px;
    padding:5px;
    display: flex;
    flex-wrap: wrap;
}

.map_subtitle_text {
    text-align: left;
    font-weight:600;
    font-size:12px;
    margin-top:7px;
    margin-right:72px;
}

#map_limit_warning {
    font-size:11px;
    margin:2px 28px 0px;
    padding: 0px;
    color:#6d6d6d;
}

#map_dropdown {
    text-align: right;
    margin-left: auto;
    margin-top:3px;
}

#map_dropdown select {
    margin-left:3px;
}

.micro_text {
    font-size:11px;
    margin-top:19px;
    padding:5px;
    text-align: center;
}

#roomtype_content {
    display: flex;
    padding-left: 10px;
    padding-right: 10px;
    padding-top:50px;
    flex-wrap: wrap;
}

.roomtype_block7 {
    display: block;
    flex: 7;
    padding-top:0px;
}

.roomtype_pie {
    flex:3;
    display: flex;
    flex-direction: column;
    font-size:12px;
    /*border-left: #e4e4e4 solid 2px;*/
    margin-top:0;
}

.roomtype_minibox {
    text-align:center;
    align-items: center;
    flex: 4;
}

.roomtype_minitext {
    font-weight:600;
    margin: 0 auto;
    flex: 1;
    padding-left: 20px;
    padding-right: 25px;
    margin-top: 11px;
    font-size: 15px;
}

.bedroom_flex_container {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
      padding: 2rem;
      margin-top:4px;
    }

    .bedroom_flex_item {
      flex: 0 0 calc(16.66% - 1rem); /* 6 items per row */
      box-sizing: border-box;
      text-align: center;
      padding: 1rem;
      border-radius: 8px;
      font-weight: bold;
      font-size:15px;
      color: rgb(87, 27, 114);
      /*color: rgb(119, 40, 156);*/
    }

    .bedroom_flex_item p {
        margin: 0px;
    }

    .bedroom_item_value {
        font-size: 24px;
        margin-top:12px;
    }

    @media (max-width: 1024px) {
      .bedroom_flex_item {
        flex: 0 0 calc(33.33% - 1rem); /* 3 items per row */
      }
    }

    @media (max-width: 768px) {
      .bedroom_flex_item {
        flex: 0 0 calc(50% - 1rem); /* 2 items per row */
      }
    }

.piechart_container {
    flex: 6;
    display: flex;
}

.spareroom_container {
    flex: 2;
}

.roomtype_minitext p {
    margin-top:0px;
}

.roomtype_label {
    font-size:20px;
    font-weight:600;
}

.roomtype_count {
    font-size:36px;
    padding-top:12px;
    font-weight:600;
}

.roomtype_label_small {
    font-size:16px;
    font-weight:600;
    padding-left: 6px;
    padding-right: 6px;
}

.roomtype_count_small {
    font-size:28px;
    padding-top:6px;
    font-weight:600;
}

.roomtype_addt_large {
    display:flex;
    margin-top:22px;
    color:#616161;
    font-size: 17px;
}

.roomtype_addt_small {
    display: none;
    margin-top:35px;
    margin-bottom:15px;
    color:#616161;
}

.roomtype_bedcount {
    display:flex;
    text-align: center;
    font-size:12px;
    color: #8b8b8b;
    margin-top:28px;
}

.roomtype_bedcount_col {
    flex:1;
    padding-top:5px;
    padding-left: 34px;
    color:#a3a3a3;
}

.canvas_pie_source {
    margin: 5px 0 12px 0;
    max-width: 125px;
    max-height: 135px;
}

.colored-square {
    width: 10px;
    height: 10px;
    display: inline-block;
    margin-top:2px;
    margin-right: 4px; /* Adjust spacing between square and text */
}

.pricing_main_container {
    display: flex;
    flex-wrap: wrap;
}

.show_on_mobile {
    display: none;
}

.pricing_belowbar_container {
    display: none;
}

.vrbo_pie_labels {
    flex: 2; 
    margin-top:52px;
    padding-left: 20px;
}

.booking_pie_labels {
    flex: 3; 
    margin-top:52px;
}

@media (max-width: 900px) {
    .pricing_sidebar_container {
        display: none;
    }

    .pricing_belowbar_container {
        display:flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .spareroom_container {
        display: none;
    }
}

@media (max-width: 649px) {    
    .download_data_row {
        display: none;
    }
    
    .report_container {
        display: block;
    }
    
    .report_title {
        display: block;
    }

    .roomtype_addt_large {
        display: flex;
        font-size: 14px;
    }

    .roomtype_minitext {
        padding-right:25px;
        padding-left:5px;
    }

    .report_resultscount {
        display: block;
        text-align:left;
        padding-top:14px;
    }

    .map_subtitle_text {
        margin-right:5px;
        margin-top:5px;
        min-width:400px;
    }

    .hide_on_mobile {
        display:none;
    }

    .show_on_mobile {
        display: block;
    }
}

@media (max-width: 500px) {
    .roomtype_label {
        font-size: 15px;
    }

    .roomtype_count {
        font-size: 26px;
    }
}

@media (max-width: 615px) {
    
    .vrbo_pie_labels {
        margin-top:52px;
        padding-left:40px;
    }

    .piechart_container {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Creates two equal-width columns */
        gap: 10px;
    }

    .booking_pie_labels {
        margin-top:52px;
        padding-left:40px;
    }

    .roomtype_pie {
        margin-right: 50px;
    }
}

@media (max-width: 799px) {
    #roomtype_content {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Creates two equal-width columns */
        gap: 10px;
    }

    .booking_pie_labels {
        margin-top:52px;
        padding-left:40px;
    }

    .vrbo_pie_labels {
        margin-top:52px;
        padding-left: 40px;
    }

    .roomtype_minibox {
        flex: 1 1 calc(50% - 10px);
        margin-bottom: 16px;
    }

    .roomtype_block7 {
        display:block;
    }

    .pricing_main_container {
        display:block;
    }

    .roomtype_bedcount {
        margin-top: 20px;
        margin-bottom: 48px;
    }

    .canvas_pie_source {
        max-height: 155px;
        margin: 13px auto 8px auto;
    }

    .chart_container_price {
        flex: none;
        width: 100%;
    }

    .apply_filter_btn{
        display:block;
        margin-top:8px;
        margin-left: auto;
    }

    .map_subtitle_text {
        margin-right:20px;
        padding-right:20px;
    }
}

.std_title {
    font-size:23px;
    padding-left:12px;
    color:#7c7c7c;
    margin-bottom:22px;
    margin-top:20px;
    flex: 1;
    padding-bottom:8px;
}

.std_title_tight {
    font-size:23px;
    padding-left:12px;
    color:#7c7c7c;
    flex: 1;
    margin-top:20px;
    margin-bottom:7px;
}

.pricing_chart_title {
    text-align:center;
    flex:1;
    font-weight:600;
    font-size:14px;
    text-decoration: underline;
    margin-bottom:8px;
    margin-top:0px;
    color:#6d6d6d;
}

.review_chart_title {
    flex:1;
    font-weight:600;
    font-size:14px;
    text-decoration: underline;
    margin-bottom:28px;
    text-align:center;
    color:#6d6d6d;
}

.hosts_container {
    display: flex;
    gap: 60px;
    margin-left: 15px;
    margin-right:15px;
    margin-top:5px;
    margin-bottom: 5px;
}

.other_build_blocks {
    height:23px;
    background-color: rgb(80, 102, 112);
    margin:1px;
    color: rgb(227, 227, 227);
    text-align: center;
    line-height: 23px;
}

.other_build_text {
    background-color: #3d3d3d;
    font-size: 11px;
}

.pricing_chart_subtitle {
    text-align:center;
    font-size:11px;
    margin-bottom:5px;
    color:#6d6d6d;
}

.occupancy_chart_container_price {
    padding-left: 20px;
    padding-right: 25px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.income_chart_container_price {
    padding-left: 10px;
    padding-right: 30px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.section_cleaning_fee {
    display: flex;
    padding-top:20px;
}

.chart_container_cleaning_fee {
    width:30vw;
    height:120px;
    padding-left:80px;
    padding-right:50px;
    flex: 2;
}

.cleaning_fee_text {
    flex:2;
    padding-top:40px;
    padding-right:20px;
    width:200px;
    text-align:center;
    font-size:14px;
    font-weight:600;
    color: #616161;
}

.cleaning_fee_text_alt {
    font-size:18px;
    font-weight:600;
    flex:2.5;
    color:#616161;
    text-align:center;
    padding: 18px 30px 0px 30px;
}

.pricing_other_container {
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-bottom:32px;
    font-size:15px;
    font-weight:600;
    padding-left:25px;
    padding-right:25px;
    color:#616161;
}

.pricing_other {
    padding-top:44px;
    width: 180px;
    text-align:center;
    align-items: center;
}

.pricing_other p {
    margin:0;
}

.pricing_other_value {
    padding-top:8px;
    font-size:27px;
}

@media (max-width: 699px) {
    .chart_container_cleaning_fee {
        padding-left:10px;
        padding-right:20px;
        flex:4;
    }

    .cleaning_fee_text {
        padding-top:45px;
    }

    .income_chart_container_price {
        padding-left: 4px;
        padding-right: 4px;
        padding-top: 4px;
        padding-bottom: 4px;
    }
}


.table_container {
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.text_container_flex2 {
    flex:2;
    width:500px;
    padding:10px;
    margin-left:12px;
}

.text-container {
    flex:1;
    padding:10px;
    margin: 0 auto;
}

.neighbourhood_table {
    width: 100%; /* Make the table take the full width of its container */
    border-collapse: collapse; /* Collapse the table borders */
    margin: 0 auto;
    font-size: 12px;
    margin-top:28px;
    margin-bottom: 14px;
}

.nh_clickable {
    cursor: pointer;
}

.nh_clickable:hover {
    text-decoration: underline;
}

.neighbourhood_table th, .neighbourhood_table td {
    padding: 6px; /* Add padding to cells */
    text-align: center; /* Center text in cells */
    border: 1px solid #ddd; /* Add a border to cells */
    /* max-width: 40px; */
}

.neighbourhood_table td a {
    color:#3f3f3f;
}

.neighbourhood_table tr:nth-child(n+17) {
    display: none;
}

.neighbourhood_name {
    cursor: pointer;
}

.neighbourhood_name:hover {
    text-decoration: underline;
}

.neighbourhood_name_td {
    min-width: 138px;
}

.neighbourhood_entire_home_header {
    background-color: #f6ecf8;
}

.neighbourhood_private_room_header {
    background-color: #fce8e8;
}

.neighbourhood_review_header {
    background-color: #f5efe1;
}

.neighbourhood_hiddenrow {
    display: none;
}

.neighbourhood_hideable {
    display: inital;
}

.neighbourhood_show_link {
    font-size:14px;
    color: #747474;
    margin-top:14px;
    margin: 0 auto;
    padding:5px;
    width:72px;
    cursor: pointer;
    margin-bottom: 17px;
}

@media (max-width: 899px) {
    .neighbourhood_hideable {
        display: none;
    }

    .neighbourhood_name_td {
        min-width: 100px;
    }
}

.host_table {
    border-collapse: collapse; /* Collapse the table borders */
    margin: 0 auto;
    margin-top: 9px;
    margin-bottom: 6px;
    min-width: 320px;
    max-width: 360px;
    color:#3d3d3d;
}

.host_table th, .host_table td {
    padding: 6px; /* Add padding to cells */
    text-align: center; /* Center text in cells */
    border: 1px solid #e9e9e9; /* Add a border to cells */
    font-size: 12px;
}

.host_table td a {
    color:#3f3f3f;
}

.host_table th {
    background-color: #f5f7fc; /* Light purple background for headers */
}

.minibox_reviews {
    text-align: center;
    color:#6d6d6d;
    margin-bottom:17px;
    margin-top:6px;
    padding-left: 10px;
    padding-right: 24px;
}

.minibox_container {
    margin-left:32px;
    margin-right:10px;
    margin-bottom:25px;
    margin-top:10px;
    text-align:right;
    color:#6d6d6d;
}

.minibox_title {
    font-size:14px;
    font-weight:600;
    max-width:100px;
}

.minibox_result {
    font-size:26px;
    font-weight:500;
    padding:5px;
    color:#5d0a8d;
    max-width:100px;
}

.minibox_below_container {
    margin-bottom:12px;
    margin-top:20px;
    padding-left: 30px;
    padding-right: 30px;
    color:#6d6d6d;
    min-width: 60px;
    max-width: 100px;
    flex: 1 0 33.33%;
    text-align: center;
}

.host_language_table {
    width: 200px;
    border-collapse: collapse; /* Collapse the table borders */
    margin: 0 auto;
}

.host_language_table td {
    padding: 4px; /* Add padding to cells */
    text-align: left; /* Center text in cells */
}

.reviews_container {
    display: flex;
    flex-direction: row;
    gap: 60px;
    margin-left: 15px;
    margin-right:15px;
}

.hosts_container {
    display: flex;
    flex-direction: row;
    margin-top:54px;
}

@media (max-width: 768px) {
  .reviews_container {
    flex-direction: column;
  }

  .hosts_container {
    flex-direction: column;
  }
}

.review_chart_container {
    height: 220px;
    width: 380px;
    display:block;
    margin:0 auto; 
}

.host_chart_container {
    height: 210px;
    width: 450px;
    display:block;
    margin:0 auto;
}

.mid_only {
    display: none;
}

.selfcheckin_host {
    display: flex;
}

@media (max-width: 899px) {
    .review_chart_title {
        margin-left:20px;
    }

    .review_chart_container {
        width: 82%;
    }
}

@media (max-width: 829px) {
    .reviews_host_container {
        display: block;
    }
    
    .reviews_container {
        border-right: 0px;
    }

    .mid_only {
        display: block;
    }

    .horizontal_bar_smallonly {
        display:block;
    }

    .selfcheckin_host {
        display: none;
    }
}

@media (max-width: 585px) {
    .mid_only {
        display: none;
    }

    .selfcheckin_host {
        display: flex;
        padding-left: 30px;
        padding-right: 30px;
        margin-top:20px;
    }
}

.chart_container_amenities {
    height: 160px;
    width: 130px;
    padding-left:30px;
    padding-right:30px;
    margin-top:-30px;
}

.chart-container-price {
    height: 250px;
    width: 88%;
    margin: auto;
}

.amenities_text {
    margin-top:-25px;
    font-size: 14px;
    font-weight: 400;
    margin-left:0px;
    padding-right:35px;
    width: 130px;
    text-align:center;
}

.amenities_main {
    display: flex;
    flex-wrap: wrap;
}

.noscrape_text {
    padding:18px 25px;
    font-size: 16px;
    font-weight:600;
}

.noscrape_map_container {
    color:#3f3f3f;
    flex: 1;
    border-right: 1px solid #ebebeb;
    max-width: 420px;
    min-width: 390px;

}

.download_item_row {
    display:flex;
    margin-top:16px;
    margin: 0px 20px;
    padding: 7px 0px;
    color:#1f1f1f;
    border-bottom: 1px solid rgb(241, 241, 241);
}

.download_item_row_noborder {
    display:flex;
    margin-top:16px;
    margin: 0px 20px;
    padding: 7px 0px;
    color:#1f1f1f;
}

.air_icon {
    background-image: url('img/air_icon_sm18.png');
    background-repeat: no-repeat;
    background-position: top left;
}

.air_icon_disabled {
    background-image: url('img/air_icon_sm18_disabled.png');
    background-repeat: no-repeat;
    background-position: top left;
}

.csv_icon {
    background-image: url('img/csv_icon_sm18.png');
    background-repeat: no-repeat;
    background-position: top left;
}

.csv_icon_disabled {
    background-image: url('img/csv_icon_gr18.png');
    background-repeat: no-repeat;
    background-position: top left;
}

.download_item_box {
    padding: 1px 5px 0px 32px;
    width: 380px;
    min-height:17px;
}

.download_item_box_narrow {
    padding: 1px 5px 0px 32px;
    width: 315px;
    min-height:17px;
}

.download_item_box_disabled {
    padding: 1px 5px 0px 32px;
    width: 380px;
    min-height:17px;
    color:#747474;
}

.download_text {
    width: 70%;
    padding: 1px 0px 0px 0px;
    color:#747474;
}

@media (max-width: 699px) {
    .download_item_box {
        padding: 1px 24px 0px 32px;
        width: 204px;
        min-height:17px;
    }

    .download_item_box_disabled {
        padding: 1px 24px 0px 32px;
        width: 204px;
        min-height:17px;
    }

    .download_item_box_narrow {
        width: 203px;
    }
}

.download_item_box_unavailable {
    flex: 2;
    background-image: url('csv_icon_gr40.png');
    background-repeat: no-repeat;
    background-position: top left;
    min-height: 40px;
    min-width: 140px;
    padding: 0px 60px 5px 52px;
    margin: 20px 0px 0px 45px;
    color:#818181;
}

@media (max-width:755px) {
    .noscrape_map_container {
        border-right: 0px solid #ebebeb;
    }
}

.download_item_title {
    text-decoration: underline;
    cursor: pointer;
}

.download_item_desc {
    font-size: 11px;
}

.download_icon {
    background-image: url('download_icon_title.png');
    background-repeat: no-repeat;
    background-position: top left;
    padding-left: 18px;
}

.column_container {
    columns: 4;
    font-size:12px;
    margin-left:55px;
    margin-top:55px;
    padding-top:0px;
}

.column_container p {
    margin-top: 0px;
}

.margin_minus_10 {
    margin-top:-10px;
}

.custom_footer {
    color: #bebebe;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    margin-bottom:2px;
    padding-bottom:2px;
    margin-top:10px;
}

@media (max-width: 549px) {
    .custom_footer {
        margin-bottom:35px;
    }
}

.all_locations_container {
    columns:4;
}

.all_locations_container p {
    margin-top: 0px;
}

.all_locations_container a {
    text-decoration: none;
}

.all_locations_container a:hover {
    text-decoration: underline;
}

.all_locations_flag_img {
    padding: 0 3px 0 0;
    margin-right:5px;
    margin-top:4px;
    height:12px;
    width:18px;
    cursor: pointer;

}

.locations_request {
    text-align: right;
    margin: auto 0;
    font-size: 16px;
    width:80%;
    font-weight: 600;
    padding-right:9px;
}

@media (max-width: 849px) {
    .column_container {
        columns: 2;
        margin-left: 10px;
    }

    .all_locations_container {
        columns:2;
    }
}

.about_main {
    display:flex;
    margin-top:40px;
}

.about_accordian {
    flex:2;
    padding-top:40px;
    padding-left:50px;
    min-width:450px;
}

.about_section {
    margin-bottom: 8px;
    transition: max-height 0.3s ease-out;
    overflow: hidden;
}

.about_title {
    border-bottom: 1px solid #f1f1f1;
    font-size:17px;
    font-weight:600;
    padding: 10px;
    cursor: pointer;
    position: relative;
}

.about_content {
    display: none;
    padding: 14px;
    font-size:14px;
    line-height:1.7;
    transition: max-height 0.3s ease-out;
}

.about_arrow {
    position: absolute;
    top: 50%;
    right: 10px;
    font-size:14px;
    color:#797979;
    transform: translateY(-50%);
    transition: transform 0.3s;
}

.about_text {
    flex:2;
    font-size:20px;
    line-height:1.7;
    padding:30px;
    text-align: center;
}

.about_img {
    margin: auto;
    display: block;
    height: 165px;
    margin-top:40px;
}

.about_email {
    margin: auto;
    display: block;
    font-size:26px;
    font-weight:600;
    color:#618ac7;
    margin-top:50px;
}

.request_input_container {
    display:flex;
}

.width-icon {
    display: inline-block;
    height: 18px;
    margin: 0 10px;
    border: 1px solid #8da6cc;
    cursor: pointer;
}

.wide-icon {
    width: 45px;
}

.medium-icon {
    width: 30px;
}

.narrow-icon {
    width: 15px;
}

.request_map {
    border:#585858 3px solid;
    margin: 0 auto;
}

.request_size {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(216, 221, 248);
    padding:9px;
    font-size:13px;
    border-radius: 7px;
    margin-left: 12px;
    padding-left:13px;
    color:#667da0;
}

.request_details_container {
    align-items: top;
    justify-content: space-between;
    background-color: rgb(216, 221, 248);
    padding:45px 25px 10px 25px;
    font-size:13px;
    border-radius: 7px;
    margin-top:0px;
    margin-left:25px;
    margin-right:25px;
    margin-bottom:40px;
}

#map_taskbar {
    display:flex;
    justify-content: space-between;
}

.form_extra_padding {
    margin-bottom:24px;
}

.request_info{
    font-size:16px;
    line-height: 1.7;
    padding:18px;
}

.request_submitted_label {
    font-weight: bold;
}

.request_title {
    font-size:36px;
    color:#618ac7;
    font-weight: 600;
    margin-bottom:40px;
}

.request_text {
    font-size:19px;
    line-height:1.7;
    margin-top:5px;
    margin-bottom:70px;
    padding-left: 90px;
    padding-right: 90px;
    text-align: center;
    font-weight: 600;
}

.request_flex_block {
    display:flex;
    flex-direction: row;
}

#comments_textbox {
    width:100%;
    padding:8px;
    box-sizing: border-box;
    font-family: Helvetica, Arial, sans-serif;
}

.request_form{
    color: #414141;
    margin-top:45px;
    margin-bottom: 38px;
    font-size: 15px;
    /*background-color: rgb(216, 221, 248);
    border-radius: 10px; */
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.request_subtext {
    color:rgb(124, 124, 124);
    font-size: 11px;
    padding: 2px 6px;
}

.request_subtext_payment {
    margin-left: 90px;
}

.request_subtext a {
    color:rgb(124, 124, 124);
}

.request_maintext {
    margin-bottom: 30px;
    font-size: 16px;
    margin-left: 48px;
    margin-right: 48px;
    color:grey;
}

.request_downloadbox_container {
    border: 1px solid rgb(165, 165, 165);
    border-radius: 9px;
    margin-left: 40px;
    margin-right: 40px;
}

.request_downloadbox_underbar {
    background-color: #164d08;
    padding: 3px;
    text-align: center;
    border-top-left-radius: 9px;
    border-top-right-radius: 9px;
    color: white;
    margin-bottom: 7px;
}

.request_sample_button_container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 30px;
    margin-bottom: 80px;
    font-size: 16px;
    color: dimgrey;
    margin-left: 20px;
    margin-right: 40px;
}

.request_sample_button {
    flex: 1;
    display: flex;
}

.request_sample_button_small {
    display: none;
    margin: 0 auto;
}

.request_payment_info {
    text-align: right;
    margin-left: 10px;
    margin-top: 86px;
}

.request_payment_continue {
    margin-bottom: 30px;
    margin-top:26px;
    align-items: center;
    display: flex;
}

.payment_smaller_title {
    font-size: 32px;
    max-height: 60px;
}

.add_request_as_product {
    border-radius: 8px;
    padding: 10px 15px;
    margin: 6px;
    display: inline-block;
    background-color: #d4edda;
    margin-right: 40px;
}

.add_source_as_product {
    border-radius: 8px;
    padding: 10px 35px;
    margin: 6px;
    display: inline-block;
    background-color: #d4edda;
}

.download_preview_zip_button {
    display: flex;
    justify-content: flex-end; 
    margin-right: 40px;
}

@media (max-width: 699px) {
    .request_payment_info {
        margin-top: 28px;
        margin-left: 0px;
        text-align: left;
    }

    .payment_smaller_title {
        font-size: 20px;
        max-height: 40px;
    }

    .request_subtext_payment {
        margin-left: 0px;
    }

    .request_payment_continue {
        margin-top: 44px;
    }

    .request_sample_button {
        display: none;
    }

    .request_sample_button_container {
        display: block;
    }

    .request_sample_button_small {
        display: flex;
        min-width: 300px;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .download_data_requestpage {
        display: block;
        font-size: 14px;
    }
}

@media (max-width: 549px) {
    .request_maintext {
        margin-left: 10px;
        margin-right: 10px;
        text-align: justify;
    }

    .add_source_as_product {
        padding: 10px 15px;
    }

    .request_downloadbox_container {
        margin-left: 2px;
        margin-right: 2px;
    }

    .download_preview_zip_button {
        margin-right: 0px;
        margin-bottom: 22px;
    }

    .add_request_as_product {
        margin-right: 0px;
    }
}

.input_container {
    margin-bottom:22px;
}

.request_break {
    width: 97%;
    margin: 23px auto;
    border-top: 1px solid #b5bce7;
}

.request_fact_breakdown {
    flex:3;
}

.request_form_flex1 {
    flex: 1;
    margin-right:30px;
    margin-left: 20px;
    flex-basis: 10%;
}

.request_form_flex2 {
    flex: 1;
    margin-left: 60px;
    margin-right: 20px;
}

@media (max-width: 849px) {
    .about_main{
        display:block;
    }

    .about_accordian {
        flex:2;
        padding-top:20px;
        padding-left:0px;
        min-width:300px;
    }

    .request_main {
        display:block;
    }

    .request_flex_block {
        display:block;
    }
}
    
@media (max-width: 749px) {
    .request_fact_breakdown {
        margin-top:35px;
    }

    .request_form_map {
        margin-right:25px;
        margin-top:5px;
    }

    .request_size {
        display:none;
    }

    .request_form {
        display: block;
    }

    .request_form_flex2 {
        margin-left: 20px;
        margin-right: 30px;
    }

    .request_text {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.generate_report_container {
    background-color: rgb(216, 221, 248);
    padding:2px 2px 2px 24px;
    font-size:13px;
    border-radius: 7px;
    margin-top:40px;
    margin-bottom:20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.generate_data_container {
    /* background-color: rgb(216, 221, 248); */
    background: linear-gradient(to bottom right, #1a7dd3, #02274e);
    padding:16px 28px 16px 28px;
    font-size:13px;
    border-radius: 7px;
    margin-top:15px;
    margin-bottom:5px;
    /* height: 120px; */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.generate_data_container_smaller {
    background: linear-gradient(to bottom right, #1a7dd3, #02274e);
    padding: 7px 22px 7px 22px;
    font-size:13px;
    border-radius: 7px;
    margin-top:15px;
    margin-bottom:15px;
    /* height: 120px; */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.generate_report_text {
    font-size:14px;
    flex: 3;
}

.generate_data_text {
    font-size:16px;
    color: #f3f3f3;
    flex: 4;
    line-height: 1.7;
    padding: 12px 58px 20px 16px;
}

.generate_data_text_base {
    font-size:16px;
    color: #f3f3f3;
    flex: 4;
    line-height: 1.7;
    padding: 12px 10px 12px 12px;
}

.generate_data_buttons {
    flex: 1;
}

.generate_data_spacer {
    margin-top: -2px;
}

.no_sign {
    display: block;
    flex:none;
    align-items: right;
    text-align: right;
    padding-right:10px;
}

@media (max-width: 794px) {
    .generate_data_buttons {
        display:flex;
        flex-direction: row;
        justify-content: center;
    }

    .generate_data_text {
        text-align: justify;
    }

    .generate_custom_submit {
        flex: 1;
        display: inline-block;
        margin-left:10px;
        margin-right:10px;
    }

    .generate_data_container {
        flex-direction: column;
        padding:16px 16px 16px 16px;
    }

    .generate_data_spacer {
        margin-top:1px;
    }

    .generate_data_container_smaller {
        flex-direction: column;
        padding-bottom: 19px;
    }
}

.payment_confirm_container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px; /* Optional: Adds space between columns */
    padding: 20px; /* Optional: Adds padding around the container */
    font-size: 12px;
    color: rgb(124, 124, 124);
}

/* Style for each column */
.payment_confirm_column {
    flex: 1;
    min-width: 370px; /* Minimum width before it stacks vertically */
}

/* Style for each item in the columns */
.payment_confirm_item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2px; /* Optional: Adds space between items */
}

.payment_confirm_item p {
    margin: 4px;
}

.payment_confirm_label {
    text-align: right;
    flex: 2;
    margin-right: 10px; /* Space between label and value */
}

/* Style for the values */
.payment_confirm_value {
    flex: 2;
}

/* Media query for responsive design */
@media (max-width: 699px) {
    .payment_confirm_container {
        flex-direction: column;
    }
}

.success_link {
    font-size: 28px;
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 80px;
}

.success_link a {
    color: rgb(78, 78, 184);
    text-decoration: none;
}

.success_link a:hover {
    color: rgb(78, 78, 184);
    text-decoration: underline;
}

.success_text {
    font-size: 14px;
    text-align: center;
    margin-left: 40px;
    margin-right: 40px;
    margin-top: 60px;
    margin-bottom: 40px;
}

.custom_download_item {
    flex:2, 2, 30%;
    text-align: center;
    font-size: 12px;
    color: rgb(124, 124, 124);
    padding:20px;
}

.article_content {
    font-size: 16px;
    padding: 20px 40px;
    text-align: justify;
    line-height:1.4;
}

.article_content h1 {
    font-size:23px;
    padding-top:26px;
    color:#7c7c7c;
    flex: 1;
    padding-bottom:2px;
}

.article_content h5 {
    text-align: center;
    font-size: 18px;
    margin-top: 42px;
    margin-bottom: 0px;
}

.calendar_sample_content {
    display: flex;
    justify-content: center;
    width: 100%;
    font-family: sans-serif;
    font-size: 14px;
    color: #aaa;
}

.calendar_container {
    flex: 1;
    margin: 4px 14px;
    max-width: 300px;
}

.calendar_sample_content table {
    border-collapse: collapse;
    width: 100%;
}

.calendar_sample_content th, td {
    border: 1px solid #ccc;
    padding: 6px;
    text-align: center;
}

.calendar_sample_content th {
    background-color: #edf2fa;
}

.calshow {
    color:#3d3d3d;
    font-weight: 600;
}

.calstrike {
    text-decoration: line-through;
}

.calendar_sample_content h3 {
    font-size: 13px;
    text-align: center;
}

.tip_text {
    font-size:11px;
    padding:14px 28px;
    color:#6d6d6d;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 999;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #fff;
    padding: 24px;
    border-radius: 10px;
    width: min(84%, 600px);
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.popup-header h3 {
    font-size: 20px;
    color: #628ab8;
    margin-top:-4px;
    margin-bottom: 26px;
}

.popup-close-btn {
    position: absolute;
    top: 0px;
    right: 7px;
    background: none;
    border: none;
    color: #b4b4b4;
    font-family: 'Courier New', Courier, monospace;
    font-size: 40px;
    cursor: pointer;
}

.popup-form label {
    display: block;
    margin-top: 10px;
    color: #414141;
    font-size: 13px;
}

.popup-form input,
.popup-form textarea {
    width: 100%;
    margin-top: 4px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.popup-submit,
.popup-close {
    margin-top: 14px;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.popup-submit {
    background-color: #007bff;
    color: white;
}

.popup-close {
    background-color: #ccc;
    margin-left: 8px;
}

.popup-form {
    display: flex;
    flex-direction: column;
}

.popup_custom_submit {
    padding: 8px;
    font-size: 14px;
    min-width: 100px;
    margin-top: 9px;
    align-self: flex-end;
}