/* Reset & basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f8f9fa;
            color: #333;
}

.ad a {
    margin: 0 auto;
}

a {
  color: #faa307;
  text-decoration: none;
}
        .intro-section {
            background: linear-gradient(135deg, #4e73df, #1cc88a);
            color: white;
            padding: 30px 20px;
            text-align: center;
            border-bottom: 2px solid black;
        }
       .intro-section h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
        }
        .intro-section p {
            font-size: 1.2em;
            margin-bottom: 20px;
        }
        .intro-section a {
            background: white;
            color: #4e73df;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
        }
        section {
            margin: auto;
            padding: 5px 20px 45px;
        }
        section h1,
        section h2,
        .layer-2 h2 {
            margin: 10px auto 15px;
            background: linear-gradient(135deg, #4e73df, #1cc88a);
            padding: 10px;
            width: 450px;
            color: white;
            text-align: center;
            border-radius: 8px;
        }
        .layer-2 h2 {
            width: 630px;
        }
        section h2 {
            margin-top: 50px;
        }
        section h3 {
            margin-bottom: 5px;
        }
        section p {
            font-size: 19px;
            margin-bottom: 15px;
        }
        .features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .feature {
            background: white;
            padding: 20px;
            flex: 1 1 250px;
            box-shadow: 1px 2px 5px #5e59bb;
            border-radius: 8px;
            text-align: center;
        }
        
.home-place-type-section {
    background: linear-gradient(135deg, #4e73df, #ffffff);
    border-top: 2px solid black;
    border-bottom: 2px solid black;
}        
.home-locations-section {
    background: linear-gradient(135deg, #4e73df, #548c1a);
    border-bottom: 2px solid black;
}
        
/* Dashboard Analytics */

.analytics {
    margin: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 1px 2px 2px grey;
    height: 500px;
}
.analytics .title {
    background: cadetblue;
    color: white;
    text-align: center;
    padding: 5px;
}
.analytics .body a {
    background: #2196f3;
    padding: 15px;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    display: block;
    width: 200px;
    text-align: center;
    margin: 20px;
}

.login,
.register,
.ai-container {
    text-align: center;
}


.login h1,
.register h1,
.ai-container {
    margin-top: 30px;
    margin-bottom: 30px;
}

    .view-post h1 {
       margin-top: 25px;
    }


/* Container for nav */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #4e73df, #1cc88a);
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid white;
}


/* Menu styles */
.menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu li a {
  color: white;
  font-weight: 600;
}

/* Hamburger styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
}

.hamburger div {
  height: 3px;
  background-color: #faa307;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger animation */
.change .bar1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  transform: rotate(45deg) translate(-5px, -6px);
}






/* Container & Typography */
.app-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.3em;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.app-description {
  font-size: 1.15rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 1.5em auto;
  line-height: 1.5;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}



.post-title h1 {
    margin: 30px auto 15px;
    background: linear-gradient(135deg, #4e73df, #1cc88a);
    padding: 10px;
    width: 800px;
    color: white;
    text-align: center;
    border-radius: 5px;
}

/* Form styling */
form {
  max-width: 500px;
  margin: 30px auto;
  background: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 1px 2px 5px #5e59bb;
  font-family: 'Poppins', sans-serif;
}

form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
  margin-top: 15px;
}

form input[type="text"],
form input[type="date"],
form textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 1rem;
  border: 2px solid #ddd;
  border-radius: 6px;
  transition: border-color 0.3s ease;
  font-family: 'Poppins', sans-serif;
  resize: vertical;
  min-height: 38px;
}

form textarea {
  min-height: 80px;
}

form input[type="text"]:focus,
form input[type="date"]:focus,
form textarea:focus {
  outline: none;
  border-color: #faa307;
  box-shadow: 0 0 6px rgba(250, 163, 7, 0.4);
}

/* Button styling */
form button {
  margin-top: 25px;
  width: 100px;
  padding: 12px 0;
  background-color: #1e68c1;
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

form button:hover,
form button:focus {
  background-color: #e59400;
  outline: none;
}

form h4 {
    margin-top: 50px;
    margin-bottom: 10px;
}




#map-all {
    box-shadow: 1px 2px 5px #5e59bb;
}



/* Posts grid */
.posts-grid,
.locations-grid,
.place-types-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
    margin: 0 auto;
}
.post-card,
.locations-card,
.place-type-card {
    background: #fff;
    padding: 20px;
    flex: 1 1 250px;
    border-radius: 8px;
    box-shadow: 1px 2px 5px #5e59bb;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post-card h3 {
    margin-bottom: 10px;
}
.post-card p {
    flex-grow: 1;
}
.post-card .btn {
    align-self: flex-start;
    margin-top: 10px;
}
.post-card a,
.locations-card a,
.place-type-card a {
    background: linear-gradient(135deg, #4e73df, #1cc88a);
    padding: 10px;
    width: 135px;
    color: white;
    font-weight: bold;
    text-align: center;
    border-radius: 15px;
    margin: 0 auto;
}

.locations-card a,
.place-type-card a {
    width: 330px;
}

.card-listing-btn { 
    color: white; 
    text-decoration: none; 
    background-color: #3f51b5; 
    text-align: center; 
    display: block; 
    padding: 5px; 
    width: 400px; 
    margin: 15px auto; 
    border-radius: 16px; 
    height: 150px; 
    font-weight: bold; 
}

.related-posts-btn {
    color: white;
    text-decoration: none;
    background-color: #3f51b5;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    width: 500px;
    margin: 15px auto;
    border-radius: 16px;
    height: 50px;
    font-weight: bold;
    text-align: center;
    box-shadow: 1px 1px 10px #4ff270;
}

.related-posts h3 {
    background: white;
    box-shadow: 1px 2px 9px;
    text-align: center;
    width: 500px;
    margin: 25px auto 5px;
}
.related-posts ul {
    list-style: none;
}

.search-result {
    text-align: center;
    line-height: 1.5;
}

.search-result a {
    margin: 0 auto;
    display: block;
    width: 400px;
    text-align: center;
    border: 1px solid black;
    border-radius: 10px;
    padding: 10px;
    font-weight: bold;
    color: black;
}





.search-bar {
    position: relative;
    width: 100%;
    max-width: 500px;
}
.search-bar input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.search-bar button {
    margin-top: 10px;
    padding: 10px 15px;
}
.autocomplete-list {
    list-style: none;
    margin: 0;
    padding: 0;
    background: white;
    border: 1px solid #ddd;
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    width: 100%;
    z-index: 1000;
    display: none; /* 🔥 hide by default */
    color: black;
    right: 0px;
}
.autocomplete-list li {
    padding: 8px;
    cursor: pointer;
    border: 1px solid black;
}
.autocomplete-list li:hover {
    background: #f0f0f0;
}


.level-1-offer,
.level-2-offer {
    margin: 0 5px 80px;
}

.level-1-offer-title,
.level-2-offer-title {
    background: #0090ff;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}
.level-1-offer-disclosure,
.level-2-offer-disclosure,
.level-3-offer-disclosure {
    font-size: 13px;
    padding: 4px;
    line-height: 1.4;
    font-style: italic;
}

.level-3-offer-disclosure {
    text-align: center;
}

.create-post form {
    background: none;
    box-shadow: none;
    width: 550px;
}
.create-post label {
    color: white;
}

#save-draft-btn {
    background-color: #33386d;
}

#remove-listing-btn {
    background-color: #f44336;    
}


#publish-btn {
    box-shadow: 1px 1px 5px white;
    margin-left: 10px;
}

.listing,
.first-section {
    background: linear-gradient(135deg, #144fff, #6d5d58);
    padding: 10px;
    margin: 50px auto;
    border-radius: 10px;
    box-shadow: 0 7px 10px #a19cff;
}





/* Open 24h icon next to place name */
.open-24h {
    display: flex;
    align-items: center;
    gap: 5px; /* space between circle and text */
    font-weight: 500;
    color: white;
    font-size: 0.9em;
    background: green;
    padding: 3px;
    border-radius: 5px;
    box-shadow: 1px 2px 5px #31ff05;
}

.listing-card {
    border:1px solid #ddd; 
    padding:15px; 
    border-radius:8px;
    box-shadow:0 2px 5px rgba(0,0,0,0.05);
    margin: 0 auto 100px;
    width: 600px;
}

.listing-meta span {
    display:flex;
    align-items:center;
    gap:5px;
}


table { border-collapse: collapse; width: 100%; }
th, td { border: 1px solid #ddd; padding: 8px; text-align: left; }
th { background-color: #f4f4f4; }



/* Pagination */
.pagination {
    text-align: center;
    margin: 20px 0;
}
.pagination a {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 12px;
    text-decoration: none;
    background: #f4f4f4;
    color: #333;
    border-radius: 4px;
    transition: background 0.3s;
}
.pagination a.active,
.pagination a:hover {
    background: #007bff;
    color: #fff;
}

/* Dashboard Container */
.dashboard {
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
}

/* Heading */
.dashboard h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* Buttons */
.dashboard .btn {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 20px;
    background: #4CAF50;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.dashboard .btn:hover {
    background: #45a049;
}

/* Table Styling */
.dashboard table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Table Head */
.dashboard table thead {
    background: #4CAF50;
    color: #fff;
}
.dashboard table thead th {
    text-align: left;
    padding: 12px 15px;
}

/* Table Body */
.dashboard table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.2s;
}
.dashboard table tbody tr:hover {
    background: #f1f1f1;
}
.dashboard table tbody td {
    padding: 12px 15px;
    color: #555;
}

/* Action Links */
.dashboard table tbody td a {
    color: #2196F3;
    text-decoration: none;
    margin-right: 10px;
}
.dashboard table tbody td a:hover {
    text-decoration: underline;
}




.view-post p {
    width: 800px;
    margin: 25px auto;
    font-size: 18px;
}
.post-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.listings {
    max-width: 700px;
    margin: 0 auto;
}

.listing-card {
    background: #fff;
    margin: 0 auto 100px;
    width: 600px;
    border-radius: 10px;
    padding: 16px 20px 4px;
    box-shadow: 1px 2px 5px #5e59bb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.listing-card:hover {
    transform: translateY(-3px);
    box-shadow: 1px 2px 5px #0e965d;
}

.listing-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #2c3e50;
}

.listing-address {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.4;
}

.listing-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
}

.listing h4 {
    background: #fdfa0b;
    width: 100px;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    margin: 50px auto 30px;
    color: black;
}

.listing select {
    display: block;
}

#add-listing-btn {
    width: 150px;
}


.distance, .time {
    background: #f5f5f5;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: bold;
}

.back-link {
    display: inline-block;
    margin: 20px auto;
    text-decoration: none;
    color: #4CAF50;
    font-weight: bold;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: #388E3C;
}
.copyright-box {
    background: #89dbff;
    width: 400px;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    line-height: 1.5;
    border-radius: 10px;
    margin: 50px auto;
}
.copyright-box a {
    color: #5f1919;
}



/* Halfway Posts */

.view-halfway_posts .view-halfway_posts_title,
.view-nearby-cities .view-nearby-cities-title {
    background: linear-gradient(135deg, #4e73df, #1cc88a);
    color: white;
    margin: 30px auto 15px;
    border-radius: 5px;
    width: 95%;
    text-align: center;
    padding: 5px;
}
.view-halfway_posts .view-halfway_posts_body,
.view-nearby-cities .view-nearby-cities-title {
    text-align: center;
}
.view-halfway_posts p,
.view-nearby-cities p {
    text-align: left;
    margin: 10px;
    font-weight:bold;
    text-indent: 10px;
    line-height: 1.4;
}
.view-nearby-cities p {
    text-align: center;
    margin-bottom: 15px;
}
.view-halfway_posts h2,
.view-nearby-cities h2 {
    background: linear-gradient(135deg, #4e73df, #1cc88a);
    color: white;
    margin: 45px auto 10px;
    border-radius: 5px;
    width: 500px;
    text-align: center;
    padding: 5px;
}

.view-halfway_posts span {
    display: block;
    margin-top: 5px;
}

.view-nearby-cities span {
    color: #0989c2;
}
.view-nearby-cities h3 {
    margin-bottom: 8px;
    text-align: center;
}

.view-nearby-cities .listing-meta {
    margin: 10px;
}



#map-midpoint {
    margin: 0 auto;
    width:250px;
    height:250px;
}

#map-midpoint,
#map2,
#map-nearby {
    box-shadow: 1px 2px 5px #5e59bb;
    margin: 20px auto 30px;
}
/* Table container styling */
.coords-table-container {
    font-family: Arial, sans-serif;
}








/* Node Categories CSS Style */

/* Container styling */
.node-category-container {
    width: 600px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* List styling */
.node-category-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.node-category-container li {
    padding: 15px 20px;
    margin-bottom: 15px;
    background: white;
    border-left: 5px solid #28a745;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 1px 2px 5px;
    text-align: center;
}

.node-category-container li:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

/* Link styling */
.node-category-container li a {
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f67b0;
    transition: color 0.2s;
}

.node-category-container li a:hover {
    color: #1e7e34;
}

/* Small text (date) */
.node-category-container li small {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #666666;
}





/* Table styling */

.nearby-location-table,
.coords-table {
    margin: 20px auto 30px;
    border-collapse: collapse;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.coords-table {
    width: 250px;
}
.nearby-location-table {
    width: 400px;
}

.nearby-location-table th, .nearby-location-table td,
.coords-table th, .coords-table td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #ddd;
}

.nearby-location-table th,
.coords-table th {
    background-color: #007BFF;
    color: #fff;
    letter-spacing: 0.05em;
}

.nearby-location-table tr:nth-child(even),
.coords-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.nearby-location-table tr:hover,
.coords-table tr:hover {
    background-color: #f1f1f1;
}

.related-halfway-posts {
    margin-top: 20px;
}

.related-halfway-posts ul {
    list-style: none;
    padding: 0;
    text-align: center;
    font-weight: bold;
}
.related-halfway-posts li {
    background: #f0f0f0;
    padding: 6px 12px;
    border-radius: 6px;
    width: 500px;
    margin: 10px auto;
    border: 1px solid black;
}
.related-halfway-posts a {
    text-decoration: none;
    color: #333;
}
.related-halfway-posts a:hover {
    text-decoration: underline;
}




/* Airports Search */
.suggestions { 
    display: none;          /* hide by default */
    position: absolute; 
    top: 64px; 
    left: 0; 
    width: 100%; 
    border: 1px solid #ccc; 
    border-radius: 6px; 
    background: #fff; 
    max-height: 200px; 
    overflow-y: auto; 
    z-index: 999; 
}
.airport-search form {
    width: 300px;
    border-radius: 8px;
}

.airport-search form input {
    margin-bottom: 5px;
}

.airport-search form label {
    margin-top: 0;
    color: black;
    margin-bottom: 15px;
}


.related-nearby-city-btn {
    background: #007BFF;
    display: block;
    color: white;
    padding: 5px;
    margin: 10px auto 25px;
    width: 400px;
    box-shadow: 0 1px 8px rgb(13 27 51);
    font-weight: bold;
    text-align: center;
}

.related-posts h2 {
    width: 800px;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #4e73df, #1cc88a);
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.2s;
}
.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 10px 0 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #222;
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, #ff4b2b, #ff416c);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}


/* Responsive: mobile */


@media (max-width: 1000px) {
    .listing-card {
        width: 500px;
    }
}

@media (max-width: 900px) {

    .view-post p {
        width: 95%;
    }

}

@media (max-width: 820px) {

    .post-title h1 {
        width: 97%;
    }
    .listing-card {
        width: 400px;
    }
    .related-nearby-city-btn {
        width: 97%;
    }
    .related-posts h2 {
        width: 95%;
    }

}

@media (max-width: 768px) {
  .menu {
    display: none;
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    background: #05457c;
    flex-direction: column;
    padding: 10px 0;
    gap: 0;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
  }

  .menu li {
    border-top: 1px solid #444;
  }

  .menu li:first-child {
    border-top: none;
  }

  .menu li a {
    display: block;
    padding: 12px 20px;
    color: white;
  }

  .nav-container.active .menu {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
  
    .dashboard table, .dashboard thead, .dashboard tbody, 
    .dashboard th, .dashboard td, .dashboard tr {
        display: block;
        width: 100%;
    }

    .dashboard table thead {
        display: none; /* hide header */
    }

    .dashboard table tbody tr {
        background: #fff;
        margin-bottom: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        padding: 12px;
    }

    .dashboard table tbody td {
        display: flex;
        justify-content: space-between;
        padding: 8px 12px;
        border: none;
        font-size: 14px;
    }

    .dashboard table tbody td::before {
        content: attr(data-label);
        font-weight: bold;
        color: #333;
        flex-basis: 40%;
    }

    .dashboard table tbody td span {
        flex-basis: 60%;
        text-align: right;
    }

    .dashboard table tbody td a {
        margin: 0 5px;
        display: inline-block;
    }
    .features, .posts-grid {
        flex-direction: column;
        align-items: center;
    }
    .post-card {
        flex: none;
    }
    .node-category-container {
        padding: 15px;
        margin: 20px;
    }

    .node-category-container h1 {
        font-size: 1.6rem;
    }

    .node-category-container li {
        padding: 12px 15px;
    }

    .node-category-container li a {
        font-size: 1rem;
    }
}


@media (max-width: 660px) {

    .layer-2 h2 {
        width: 95%;
    }
    
    .posts-grid {
        width: 95%;
        margin: 0 auto;
    }
    .listing,
    .first-section {
        width: 97%;
    }
    .view-halfway_posts_body h2 {
        width: 95%;
    }
    .coords-table-container .coords-table {
       width: 90%;     
    }
    .node-category-container {
        width: 96%;
    }

}

@media (max-width: 550px) {
    .related-halfway-posts li {
        width: 96%;
    }
    .view-nearby-cities h2 {
        width: 95%;
    }
    .related-posts-btn,
    .related-posts h3  {
        width: 97%;
    }
}

@media (max-width: 480px) {
      .app-title {
        font-size: 2rem;
      }
    
      form {
        padding: 20px;
      }
      section h2,
      .locations-card a,
      .place-type-card a {
        width: 97%;
      }
    .card-listing-btn,
    section h1,
    .copyright-box {
        width: 97%;
    }
    .node-category-container h1 {
        font-size: 1.4rem;
    }

    .node-category-container li {
        padding: 10px 12px;
    }

    .node-category-container li a {
        font-size: 0.95rem;
    }
}


@media (max-width: 440px) {

    .listing-card {
        width: 97%;
    }
    .coords-table-container {
       width: 95%;     
    }
    
    .nearby-location-table {
        width: 97%;
    }

}

@media (max-width: 370px) {
/* Make table scrollable on small screens */
.table-responsive {
    width: 100%;
    overflow-x: auto; /* enables horizontal scroll */
    -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
    margin: 0 auto 20px;
}

.nearby-location-table {
    width: 100%; /* table fits container */
    min-width: 300px; /* ensures content doesn't shrink too much */
    border-collapse: collapse;
}

.nearby-location-table th,
.nearby-location-table td {
    padding: 8px 12px;
    text-align: center;
    white-space: nowrap; /* prevents text from wrapping and keeps table scrollable */
}

}
