/* General body settings */
body {
    background-color: #f4f4f4;
    color: #373737;
    font-family: Verdana, Arial, Helvetica;
    margin: 0;
    font-size: 10pt;
    box-sizing: border-box;
}

/* Header bar */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
    z-index: 1000;
    box-sizing: border-box;
}

.header a {
    color: inherit; /* Use the same color as surrounding text */
    text-decoration: none; /* Remove underline */
}

.header a:hover {
    text-decoration: none; /* Ensure no underline on hover */
    color: inherit; /* Prevent hover color change */
}

/* Content section under header */
.content-section {
    padding: 20px 20px 0px 20px;
    margin: 0 auto 0px auto;
    width: 80%;
    max-width: 1200px;
    box-sizing: border-box;
}

/* Form and description container */
.form-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin: 10px 0;
	padding: 10px 0;
}

/* Suburb dropdown styling */
.suburbdropdown {
    min-width: 300px;
    padding: 5px;
    font-size: 1em;
}

/* Styling for the Go button */
input[type="submit"] {
    padding: 5px 15px;
    font-size: 1em;
    margin-left: 10px;
}

h2 {
	margin: 10px 0px 6px 0px;
	padding: 0px 0px 6px 0px;
}

h3 {
	margin: 5px 0px 6px 0px;
	padding: 0px;
}

p {
	margin: 0px 0px 6px 0px;
	padding: 0px;
}

/* Base Desktop Styles */
.header {
    padding: 15px 0;
    height: 70px;
    font-size: 1.5rem;
}

/* DataTables container for desktop */
.table-container {
    width: 100%;
    max-width: 90%;
    overflow-x: auto;
}

.footer {
    padding: 10px 0;
    height: 50px;
    font-size: 0.9rem;
}

body {
    padding-top: 70px;
    padding-bottom: 50px;
}

/* Mobile Portrait (max-width: 767px) */
@media only screen and (max-width: 767px) {
    /* General body padding for smaller header/footer */
    body {
        padding-top: 40px;   /* Adjust according to your header height */
        padding-bottom: 25px; /* Adjust according to your footer height */
        font-size: 9pt; /* Smaller font size for mobile */
    }

    /* Header bar */
    .header {
        height: 40px; /* Set explicit height */
        font-size: 1.2rem;
        padding: 8px 0;
    }

    /* Footer bar */
    .footer {
        height: 25px; /* Set explicit height */
        font-size: 0.6rem; 
		padding: 6px 0; /* Adjust padding if needed */
    }

    /* Treat all upper containers as block-level elements */
	.upper-responsive-container,
    .upper-map-container,
    .upper-info-container,
    .lower-column-container,
    .lower-column,
	.lower-column-left {
        display: block;
        width: 100%;
        margin: 0 auto 20px auto;
        clear: both;
        padding: 0px 15px 0px 15px;
        box-sizing: border-box;
    }

    .upper-column-container,
	.upper-column {
        display: block;
        width: 100%;
        margin: 15px auto 0px auto;
        clear: both;
        padding: 0px 15px 0px 15px;
        box-sizing: border-box;
    }

    /* Upper Map Container */
    .upper-map-container {
        background-color: #ddd; /* Different color background for the map */
        height: calc(50vh - 60px); /* Height set to 50% of viewport minus padding/header/footer */
        max-height: 350px; /* Limit the maximum height */
        border-radius: 10px; /* Rounded corners */
        border: 1px solid #ccc;
    }

    /* Map settings */
    #map {
        width: 100%;
        height: 100%; 
        box-sizing: border-box; 
        border-radius: 10px;
    }

    /* Lower Columns Container and Individual Columns */
    .upper-column-container {
        clear: both;
        margin-bottom: 0px;
        padding-bottom: 15px;
    }

	.upper-column-front,
    .upper-column {
        height: auto;
        background-color: #fff;
        border: 1px solid #ccc;
        /* border-left: 4px solid #3498db; */
        border-radius: 10px; /* Rounded corners */
		padding: 20px 20px 10px 20px;
		text-align: left;
    }
	
	.upper-column-front {
		border-left: 4px solid #3498db;
	}

    /* Upper Info Container */
    .upper-info-container {
        background-color: #fff;
        border: 1px solid #ccc;
        border-left: 4px solid #3498db;
        height: auto;
        min-height: 150px; /* Keep a consistent minimum height */
        border-radius: 10px; /* Rounded corners */
    }

	.lower-column-container {
        clear: both;
        margin-bottom: 0px;
        padding-bottom: 0px;
    }

	.lower-column {
        height: auto;
        background-color: #fff;
        border: 1px solid #ccc;
        border-left: 4px solid #3498db;
        border-radius: 10px; /* Rounded corners */
		padding: 10px 0px 0px 0px;
		text-align: center;
    }
	
	.lower-column-left {
        height: auto;
        background-color: #fff;
        border: 1px solid #ccc;
        border-left: 4px solid #3498db;
        border-radius: 10px; /* Rounded corners */
		padding: 10px 10px 0px 10px;
		text-align: left;
    }	
	
    /* Container for the dropdown and button */
    .form-container select,
    .select2-container {
        width: calc(100% - 80px); /* Occupy the remaining space minus button width */
        box-sizing: border-box;
    }

    /* DataTables container for mobile portrait */
    .table-container {
        max-width: 100%;
    }
}

/* Tablet Portrait (min-width: 768px and max-width: 959px) */
@media only screen and (min-width: 768px) and (max-width: 959px) {
    body {
        padding-top: 70px;   /* Adjust according to your header height */
        padding-bottom: 50px; /* Adjust according to your footer height */
    }

    /* Header bar */
    .header {
        height: 70px; /* Set explicit height */
        font-size: 1.5rem;        
        padding: 15px 0;
    }

    /* Footer bar */
    .footer {
        height: 50px; /* Set explicit height */
        font-size: 0.9rem;    
        padding: 10px 0; /* Adjust padding if needed */        
    }    

    .upper-column-container,
    .upper-responsive-container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin: 20px auto;
        align-items: stretch; /* Ensures both map and info column stretch to match height */
        width: 90%; /* Ensure container is centered */
    }

    .upper-map-container {
        flex: 7 !important; /* Ensure 70% width */
        min-height: 450px;
        background-color: #ddd;
        border-radius: 10px;
        overflow: hidden;
        border: 1px solid #ccc;
        display: flex;
        flex-direction: column;
    }

    .upper-info-container {
        flex: 3 !important; /* Ensure 30% width */
        min-height: 450px;
        padding: 20px;
        background-color: #fff;
        border: 1px solid #ccc;
        border-left: 4px solid #3498db;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
    }

    .lower-column-container {
        display: flex;
        gap: 20px;
        width: 90%; /* Ensure lower container is centered */
        margin: 0 auto;
    }

    .upper-column-front,
	.upper-column {
        flex: 1;
        height: auto;
        padding: 20px 20px 10px 20px;
        background-color: #fff;
        border: 1px solid #ccc;
        /* border-left: 4px solid #3498db; */
        border-radius: 10px;
    }

	.upper-column-front {
		border-left: 4px solid #3498db;
	}

    .lower-column {
        flex: 1;
        padding: 15px;
		margin: 0px;
        background-color: #fff;
        border: 1px solid #ccc;
        border-left: 4px solid #3498db;
        border-radius: 10px;
        text-align: center;
    }

    .lower-column-left {
        flex: 1;
        height: auto;
        padding: 20px;
        background-color: #fff;
        border: 1px solid #ccc;
        border-left: 4px solid #3498db;
        border-radius: 10px;
        text-align: left;
    }
    

    .lower-column form, .lower-column select {
		margin: 0px; 
		padding: 0px;
    }

    /* DataTables container for tablet portrait */
    .table-container {
        max-width: 90%;
    }
}

/* Tablet Landscape (min-width: 960px and max-width: 1112px) */
@media only screen and (min-width: 960px) and (max-width: 1112px) {
	body {
		padding-top: 70px;
		padding-bottom: 50px;
	}    

	.header {
		height: 70px;
	    font-size: 1.5rem;
		padding: 15px 0;		
	}

	.footer {
		height: 50px;
		font-size: 0.9rem;	
		padding: 10px 0;		
	}	

	.upper-column-container,
	.upper-responsive-container {
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
		margin: 20px auto;
		align-items: stretch;
		width: 90%;
	}

	.upper-map-container {
		flex: 7 !important;
		min-height: 450px;
		background-color: #ddd;
		border-radius: 10px;
		overflow: hidden;
		border: 1px solid #ccc;
		display: flex;
		flex-direction: column;
		padding: 10px 10px 10px 10px;
	}

	.upper-info-container {
		flex: 3 !important;
		min-height: 450px;
		padding: 20px;
		background-color: #fff;
		border: 1px solid #ccc;
		border-left: 4px solid #3498db;
		border-radius: 10px;
		display: flex;
		flex-direction: column;
	}

	.upper-column-front,
    .upper-column {
        flex: 1;
        height: auto;
        padding: 20px 20px 10px 20px;
        background-color: #fff;
        border: 1px solid #ccc;
        /* border-left: 4px solid #3498db; */
        border-radius: 10px;
		text-align: left;
    }

	.upper-column-front {
		border-left: 4px solid #3498db;
	}

    .lower-column-container {
        display: flex;
        gap: 20px;
        width: 90%;
        margin: 0 auto;
    }

    .lower-column {
        flex: 1;
        height: auto;
        padding: 10px;
        background-color: #fff;
        border: 1px solid #ccc;
        border-left: 4px solid #3498db;
        border-radius: 10px;
        text-align: center;
    }
    
    .lower-column-left {
        flex: 1;
        height: auto;
        padding: 20px;
        background-color: #fff;
        border: 1px solid #ccc;
        border-left: 4px solid #3498db;
        border-radius: 10px;
    }
	
    .lower-column form, .lower-column select {
		margin: 0px; 
		padding: 0px;
    }

    /* DataTables container for tablet landscape */
    .table-container {
        max-width: 90%;
    }

}





/* Desktop (min-width: 1112px and max-width: 1400px) */
@media only screen and (min-width: 1112px) and (max-width: 1400px) {
	body {
		padding-top: 70px;   /* Adjust according to your header height */
		padding-bottom: 50px; /* Adjust according to your footer height */
	}    

	/* Header bar */
	.header {
		height: 70px; /* Set explicit height */
	    font-size: 1.5rem;
		padding: 15px 0;		
	}

	/* Footer bar */
	.footer {
		height: 50px; /* Set explicit height */
		font-size: 0.9rem;		
		padding: 10px 0; /* Adjust padding if needed */
	}	

	.upper-column-container,
	.upper-responsive-container {
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
		margin: 20px auto;
		align-items: stretch; /* Ensures both containers match height */
		width: 90%; /* Ensure upper container is centered */
	}

	.upper-map-container {
		flex: 7 !important; /* Ensure 70% width */
		background-color: #aaa;
		border-radius: 10px;
		overflow: hidden;
		border: 1px solid #ccc;
		min-height: 500px;
		height: auto;
	}

	.upper-info-container {
		flex: 3 !important; /* Ensure 30% width */
		min-height: 450px;
		padding: 20px;
		background-color: #fff;
		border: 1px solid #ccc;
		border-left: 4px solid #3498db;
		border-radius: 10px;
		height: auto; /* Ensure it adapts to content */
	}

	.upper-column-front,
    .upper-column {
        flex: 1;
        height: auto;
        padding: 20px 20px 10px 20px;
        background-color: #fff;
        border: 1px solid #ccc;
        /* border-left: 4px solid #3498db; */
        border-radius: 10px;
		text-align: left;
    }

	.upper-column-front {
		border-left: 4px solid #3498db;
	}

    .lower-column-container {
        display: flex;
        gap: 20px;
        width: 90%; /* Constrained width for lower columns, center-aligned */
        margin: 0 auto; /* Center align lower columns */
    }

    .lower-column {
        flex: 1;
        height: auto;
        padding: 10px;
        background-color: #fff;
        border: 1px solid #ccc;
        border-left: 4px solid #3498db;
        border-radius: 10px;
		text-align: center;
    }
	
    .lower-column-left {
        flex: 1;
        height: auto;
        padding: 20px;
        background-color: #fff;
        border: 1px solid #ccc;
        border-left: 4px solid #3498db;
        border-radius: 10px;
		text-align: left;
    }	
	
    .lower-column form, .lower-column select {
		margin: 0px; 
		padding: 0px;
    }

    /* DataTables container for desktop */
    .table-container {
        max-width: 90%;
    }

}

/* Suggest Page */
.suggest-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: white;
}

.suggest-form h1 {
    text-align: center;
    margin-bottom: 10px;
}

.suggest-form h2 {
    font-size: 18px;
    margin: 20px 0 10px 0;
}

.venue-address {
    margin-bottom: 20px;
}

.form-description {
    background: #f8f9fa;
    border: 2px solid #bbb;
    padding: 15px;
    margin: 20px 0;
}

.amenity-card {
    background: #f8f9fa;
    border: 2px solid #bbb;
    border-radius: 6px;
    padding: 8px 12px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    min-height: 36px;
}

.amenity-card.has-feature {
    background: #d4edda;
    border-color: #7bc87b;
}

.amenity-card i {
    color: #6c757d;
    font-size: 20px;
    margin-right: 12px;
    width: 24px;
    flex-shrink: 0;
}

.amenity-card.has-feature i {
    color: #28a745;
}

.amenity-card .card-content {
    flex: 1;
}

.amenity-card .card-right {
    margin-left: auto;
    text-align: right;
}

.amenity-card select {
    padding: 6px 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background: white;
    min-width: 160px;
}

.captcha-section {
    background: white;
    border: 2px solid #bbb;
    border-radius: 8px;
    padding: 20px;
    margin: 0;
    text-align: center;
}

.captcha-question {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.captcha-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 300px;
    margin: 0 auto;
}

.captcha-option {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s;
}

.captcha-option:hover {
    background: #e3f2fd;
    border-color: #2196f3;
}

.captcha-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.captcha-option:has(input[type="radio"]:checked) {
    background: #007bff;
    color: white;
    border-color: #0056b3;
}

@media (max-width: 600px) {
    .suggest-form {
        margin: 10px;
        padding: 15px;
    }
    .amenity-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .amenity-card .card-right {
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
        text-align: left;
    }
    .amenity-card select {
        width: 100%;
    }
    .captcha-options {
        grid-template-columns: 1fr;
        max-width: 200px;
    }
}

/* Form actions */
.form-actions {
    text-align: center;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 2px solid #eee;
}

.submit-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 15px;
    font-weight: 500;
}

.submit-btn:hover {
    background: #0056b3;
}

.cancel-btn {
    color: #666;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 16px;
}

.cancel-btn:hover {
    color: #333;
    text-decoration: underline;
}

/* Messages */
.success-message {
    background: #d4edda;
    border: 2px solid #c3e6cb;
    color: #155724;
    padding: 25px;
    text-align: center;
    margin: 40px auto;
    max-width: 500px;
    border-radius: 6px;
}

.success-message i {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.error-messages {
    background: #f8d7da;
    border: 2px solid #f5c6cb;
    color: #721c24;
    padding: 18px;
    margin-bottom: 25px;
    border-radius: 4px;
}

.error {
    margin: 5px 0;
    font-weight: 500;
}

.error-page {
    text-align: center;
    margin: 60px auto;
    max-width: 500px;
    padding: 30px;
}

/* Full Desktop (min-width: 1401px) */
@media only screen and (min-width: 1401px) {
	body {
		padding-top: 70px;   /* Adjust according to your header height */
		padding-bottom: 50px; /* Adjust according to your footer height */
	}

	/* Header bar */
	.header {
		height: 70px; /* Set explicit height */
		font-size: 1.5rem;	
	    padding: 15px 0;
	}
	
	/* Footer bar */
	.footer {
		height: 50px; /* Set explicit height */
	    font-size: 0.9rem;
		padding: 10px 0; /* Adjust padding if needed */
	}	

   .upper-column-container,
   .upper-responsive-container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin: 20px auto;
        align-items: stretch;
        width: 70%; /* Set a constrained width for large desktop view */
    }

    .upper-map-container {
        flex: 7 !important;
        min-height: 500px;
        background-color: #ddd;
        border-radius: 10px;
        overflow: hidden;
		border: 1px solid #ccc;
    }

    .upper-info-container {
        flex: 3 !important;
        min-height: 500px;
        padding: 20px;
        background-color: #fff;
        border: 1px solid #ccc;
        border-left: 4px solid #3498db;
        border-radius: 10px;
    }

    .lower-column-container {
        display: flex;
        gap: 20px;
        width: 70%; /* Constrained width for lower columns, center-aligned */
        margin: 0 auto; /* Center align lower columns */
		padding: 0px 0px 0px 0px;
    }

	.upper-column-front,
    .upper-column {
        flex: 1;
        height: auto;
        padding: 20px 20px 10px 20px;
        background-color: #fff;
        border: 1px solid #ccc;
        /* border-left: 4px solid #3498db; */
        border-radius: 10px;
		text-align: left;
    }

	.upper-column-front {
		border-left: 4px solid #3498db;
	}

    .lower-column {
        flex: 1;
        height: auto;
        padding: 10px;
        background-color: #fff;
        border: 1px solid #ccc;
        border-left: 4px solid #3498db;
        border-radius: 10px;
		text-align: center;
    }
	
    .lower-column-left {
        flex: 1;
        height: auto;
        padding: 20px;
        background-color: #fff;
        border: 1px solid #ccc;
        border-left: 4px solid #3498db;
        border-radius: 10px;
    }	
	
    .lower-column form, .lower-column select {
		margin: 0px; 
		padding: 0px;
    }

    /* DataTables container for full desktop */
    .table-container {
        max-width: 90%;
    }
}

/* Footer bar */
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
    z-index: 999;
    box-sizing: border-box;
}

/* Shop Page Styling */
.shop-page {
    max-width: 800px;
    margin: 0 auto;
}

.venue-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}


.venue-address {
    color: #6c757d;
    font-size: 1.1em;
    margin: 0;
    font-weight: 500;
}

.venue-contact {
    margin-bottom: 0;
}

.contact-section-title, .contact-subsection-title {
    color: #2c3e50;
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
    display: inline-block;
}

.contact-subsection-title {
    font-size: 1em;
    margin-bottom: 10px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background-color: white;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    transition: box-shadow 0.3s ease;
}

.contact-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-item i {
    color: #3498db;
    font-size: 1.1em;
    width: 20px;
    text-align: center;
}

.contact-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

.contact-link:hover {
    color: #3498db;
}

.social-media {
    margin: 20px 0 0 0;
}


.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    color: #3498db;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.social-link:hover {
    background-color: #3498db;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.trophy-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: white;
    color: #3498db;
    border-radius: 50%;
    font-size: 0.7em;
    margin-left: 8px;
    vertical-align: middle;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.trophy-icon i {
    color: #3498db !important;
}

.hours-contact-item {
    align-items: flex-start !important;
    grid-column: 1 / -1;
}

.hours-content {
    background-color: transparent;
    border: none;
    padding: 0;
    line-height: 1.4;
    font-size: 0.9em;
    color: #2c3e50;
    flex: 1;
}

.section-title {
    color: #2c3e50;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
    display: inline-block;
    clear: both;
}

h1.section-title {
    font-size: 1.8em;
    margin-bottom: 8px;
    clear: both;
}

h2.section-title {
    font-size: 1.3em;
    margin-bottom: 15px;
    clear: both;
}

.venue-info-container, .venue-features, .venue-summary, .venue-recommendations {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.features-icons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.features-icons i {
    font-size: 1.5em;
    color: #3498db;
    padding: 8px;
    background-color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.features-icons i:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}


.verification-chart {
    margin: 15px 0;
}

.verification-chart img {
    border: 1px solid #3498db;
    border-radius: 5px;
    max-width: 100%;
    height: auto;
}

.summary-content {
    line-height: 1.6;
    color: #495057;
}

.summary-content h3 {
    margin: 20px 0 8px 0;
    color: #2c3e50;
    font-size: 1.1em;
    font-weight: 600;
}

.summary-content h3:first-child {
    margin-top: 0;
}

.region-heading {
    color: #2c3e50;
    font-size: 1.1em;
    font-weight: 600;
    margin: 15px 0 8px 0;
    border-bottom: 1px solid #3498db;
    padding-bottom: 3px;
    display: inline-block;
}

.summary-content ul {
    margin: 8px 0 12px 0;
    padding-left: 20px;
}

.summary-content li {
    margin-bottom: 4px;
    line-height: 1.5;
}

.summary-content br {
    display: none;
}

/* Nearby Venues Styling */
.nearby-venues-container {
    margin-top: 30px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}


.nearby-venues-subtitle {
    color: #6c757d;
    margin-bottom: 20px;
    font-style: italic;
}

.distance-group {
    margin-bottom: 20px;
}

.distance-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 10px 16px;
    margin: 0 0 10px 0;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.venue-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.venue-item {
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s ease;
}

.venue-item:last-child {
    border-bottom: none;
}

.venue-item:hover {
    background-color: #f1f3f4;
}

.venue-link {
    display: block;
    padding: 12px 16px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.venue-link:hover {
    color: #3498db;
}

/* Shop Location Map Styling */
.venue-location-map {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.shop-map-container {
    height: 250px;
    width: 100%;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@media only screen and (max-width: 767px) {
    .shop-map-container {
        height: 200px;
    }
}

/* FAQ link styling */
.faq-link {
    grid-column: 1 / -1;
}

/* Suggest icon styling - matches amenity icons exactly */
i.suggest-icon {
    font-size: 1.5em;
    color: white;
    padding: 8px;
    background-color: #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

i.suggest-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    background-color: #e67e22;
}



.amenity-label i {
    color: #3498db;
    font-size: 1.3em;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.amenity-label.has-feature i {
    color: #28a745;
}

.amenity-content {
    flex: 1;
}

.amenity-name {
    font-weight: 600;
    color: #2c3e50;
    flex: 1;
    margin-left: 8px;
}

.amenity-status {
    color: #28a745;
    font-style: italic;
    font-size: 0.85em;
    display: block;
    margin-top: 4px;
}

