/* General Styles *//* assets/css/styles.css */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}
main {
    padding: 20px;
    text-align: center;
}
/* Header */
header {
    background-image: url('../images/logo/header-background.jpg'); /* Correct path */
    background-size: cover; /* Ensure the image covers the entire header */
    background-position: center; /* Center the image */
    color: #fff;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative; /* For positioning the AlertMe banner */
    height: 400px; /* Adjust the height of the header as needed */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Align content to the bottom */
	padding-bottom: 0;
}
/* Header */
header h1 {
    margin: 0;
    font-size: 2.5rem;
}
/* Logo */
.header-logo {
    position: absolute; /* Position the logo absolutely within the header */
    top: 20px; /* Adjust as needed */
    left: 20px; /* Adjust as needed */
}
.header-logo img {
    height: 100px; /* Adjust the logo size as needed */
    width: auto; /* Maintain aspect ratio */
}
/* Navigation */
.header-nav {
    position: absolute; /* Position the navigation absolutely within the header */
    top: 20px; /* Adjust as needed */
    right: 380px; /* Adjust to make space for the search form. */
    /*border: 1px solid red;*/
}
.header-nav ul {
    list-style: none; /* Remove bullet points */
    margin: 0;
    padding: 0;
    display: flex; /* Display navigation items in a row */
    gap: 20px; /* Space between navigation items */
}
.header-nav ul li {
    display: inline-block; /* Display list items inline */
}
.header-nav ul li a {
    color: #000; /* Navigation link color */
    text-decoration: none; /* Remove underline */
    font-size: 1rem; /* Adjust font size as needed */
    font-weight: bold; /* Make links bold */
}
.header-nav ul li a:hover {
    text-decoration: underline; /* Add underline on hover */
}

/* Header Search & Form */
.header-search {
	position: absolute; /* Position the navigation absolutely within the header */
    top: 20px;
	right: 20px;
    margin-left: auto; /* Push the search form to the right */
   padding: 3px 5px; /* Add some spacing */
	/*border: 2px solid blue;*/
	height: 70px;
	max-width: 330px;
	
	/***************/
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    /*padding: 1rem;*/
    /*flex: 1;*/
    /*margin: 0 1rem;*/
     /*margin: 0 0;*/
}
.header-logo {
    flex: 0 0 auto;
}
.header-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}
.header-search form {
    display: flex;
    /*border: 1px solid green;*/
    align-items: center;
	height: 65px;
	padding: 0 6px;
	max-width: 330px;
}
.header-search input {
    flex: 1;
    /*padding: 0.5rem;*/
}
.header-search input[type="text"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    margin-right: 10px;
	margin-top: 12px;
}
.header-search button {
    padding: 8px 12px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}
.header-search button:hover {
    background-color: #0056b3;
}
/***************************************/
/* Tablet styles (768px - 1024px) */
@media (max-width: 1024px) {
    header {
        flex-direction: column;
        align-items: stretch;
    }
    .header-logo {
        order: 1;
        text-align: center;
        margin-bottom: 1rem;
    }
    .header-nav {
        order: 2;
        margin-bottom: 1rem;
    }
    .header-search {
        order: 3;
        max-width: 100%;
        margin: 0 0 1rem 0;
    }
    .alertme-banner {
        order: 4;
        display: block;
        text-align: center;
        padding: 1rem;
        background: #f5f5f5;
        border-radius: 4px;
        margin-bottom: 1rem;
    }
}

/* Mobile styles (up to 767px) */
@media (max-width: 767px) {
    .header-nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    .header-nav li {
        text-align: center;
        padding: 0.5rem;
        border-bottom: 1px solid #eee;
    }
    .header-search form {
        flex-direction: column;
    }
    .header-search button {
        margin-top: 0.5rem;
    }
    .alertme-banner {
        padding: 0.75rem;
    }
    .alertme-banner h2 {
        font-size: 1.2rem;
    }
}

/* Small mobile devices (up to 480px) */
@media (max-width: 480px) {
    .header-logo img {
        max-width: 200px;
    }
    .header-search input {
        padding: 0.5rem 0.25rem;
    }
    .alertme-banner {
        padding: 0.5rem;
    }
    .alertme-banner p {
        font-size: 0.9rem;
    }
}
/***************************************/







.success-message {
    max-width: 600px;
    margin: 50px auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.success-message h1 {
    color: #28a745; /* Green color for success */
    margin-bottom: 20px;
}

.success-message p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
}

.action-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
}

.btn:hover {
    background-color: #0056b3;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 5px auto;
    padding: 20px;
	/*border: 1px solid red;*/
}

h1, h2, h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}



/* AlertMe Banner */
.alertme-banner {
    background-color: rgba(52, 152, 219, 0.6); /* Semi-transparent blue tint */
    color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 0; /* Space at the bottom of the header */
    height: 150px; /* Fixed height for the banner */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    backdrop-filter: blur(5px); /* Optional: Adds a blur effect to the tint */
    position: relative; /* For positioning the CTA button IF relative DOESNT WORK THEN TRY STATIC*/
}
/* Banner Heading */
.alertme-banner h2 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}
/* Banner Paragraph */
.alertme-banner p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
}
/* Call-to-Action Button */
.alertme-banner .cta-button {
    background-color: #2ecc71; /* A vibrant green color */
    color: #fff; /* White text for contrast */
    padding: 10px 20px; /* Comfortable button padding */
    border: none; /* Remove default border */
    border-radius: 5px; /* Rounded corners */
    font-size: 16px; /* Readable text size */
    font-weight: 600; /* Bold text for emphasis */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease; /* Smooth hover effect */
}
/* Hover Effect for CTA Button */
.alertme-banner .cta-button:hover {
    background-color: #27ae60;
}
/* Optional: Add an Icon to the Button */
.alertme-banner .cta-button i {
    margin-right: 8px;
}

/* Forms */
form {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

form input[type="text"],
form input[type="number"],
form input[type="email"],
form input[type="password"],
form textarea,
form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

form input[type="text"]:focus,
form input[type="number"]:focus,
form input[type="email"]:focus,
form input[type="password"]:focus,
form textarea:focus,
form select:focus {
    border-color: #3498db;
    outline: none;
}

form button {
    background-color: #3498db;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #2980b9;
}

/* Lists */
ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

ul li h3 {
    margin-top: 0;
    color: #2c3e50;
}

/* Messages */
.message {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.message p {
    margin: 5px 0;
}

.message em {
    color: #777;
    font-size: 0.9em;
}

/* Buttons */
.button {
    background-color: #3498db;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #2980b9;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

.hidden {
    display: none;
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 15px 25px;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: opacity 0.3s ease;
}

.toast.hidden {
    opacity: 0;
}

.toast.success {
    background-color: #27ae60;
}

.toast.error {
    background-color: #e74c3c;
}

/* Property Images */
.property-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.property-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.property-image:hover {
    transform: scale(1.05);
}
/***********************************************************/
/* Core Carousel Structure */
.carousel {
  position: relative;
  width: 100%;
  max-width: 800px; /* Adjust as needed */
  margin: 0 auto;
  overflow: hidden; /* Critical for hiding non-active slides */
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease; /* Smooth slide animation */
  width: 100%;
}

.carousel-item {
  min-width: 100%; /* Force each slide to take full width */
  flex-shrink: 0; /* Prevent slides from squeezing together */
  transition: opacity 0.5s ease; /* Optional: fade effect */
}

/* Navigation Buttons */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

/* Image Sizing Fixes */
.carousel-image {
  width: 100%;
  height: 400px; /* Fixed height - adjust as needed */
  object-fit: cover; /* Ensures images fill container without distortion */
  object-position: center; /* Centers the image focus */
  display: block;
}
/* Responsive Height Adjustment */
@media (max-width: 768px) {
  .carousel-image {
    height: 300px; /* Smaller height for mobile */
  }
}

/* Add rounded corners and subtle shadow */
.carousel {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Improve caption visibility */
.carousel-caption {
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 20px;
  bottom: 0;
  left: 0;
  right: 0;
}
.carousel-control.prev { left: 10px; }
.carousel-control.next { right: 10px; }

/**************************************************************/
/* Carousel Styles */
/*.carousel {
    position: relative;
    max-width: 800px;
	height: auto;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	border: 1px solid green;
}
.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
	border: 1px solid blue;
}
/*
.carousel-item {
    min-width: 100%;
    position: relative;
}*/
/*
.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
    display: none; /* Hide all slides by default */
}
*/
/*
.carousel-item.active {
    display: block; /* Show the active slide */
}
/*.carousel-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
	 display: block;
}


.carousel-caption {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
	/*z-index: 10;*/
   /* background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.carousel-control:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
.carousel-control.prev {
    left: 10px;
}
.carousel-control.next {
    right: 10px;
}
.carousel-dots {
    text-align: center;
    padding: 10px 0;
}
*/
.listings{
	max-width: 800px;
	max-height: 800px;
    margin: 10px auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	border: 1px solid brown;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #bbb;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #333;
}

.dot:hover {
    background-color: #666;
}

/* Thumbnails */
.thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.thumbnail.active {
    opacity: 1;
    border: 2px solid #3498db;
}

.thumbnail:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Full-Screen Button */
.full-screen-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.full-screen-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 15px;
    }

    header h1 {
        font-size: 2rem;
    }

    form input[type="text"],
    form input[type="number"],
    form input[type="email"],
    form input[type="password"],
    form textarea,
    form select {
        width: 100%;
    }
}


/* Reviews Container */
.reviews-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.search-reviews {
    margin-bottom: 20px;
}

.search-reviews form {
    display: flex;
    gap: 10px;
}

.search-reviews input[type="text"] {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.search-reviews button {
    padding: 8px 12px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.search-reviews button:hover {
    background-color: #0056b3;
}

.random-reviews {
    margin-bottom: 40px;
}

.review-card {
    background: #f9f9f9;
    padding: 15px;
    border-left: 4px solid #007bff;
    margin-bottom: 15px;
    border-radius: 4px;
	
	/*background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);*/
}
.review-card h3 {
    margin: 0 0 10px;
    color: #333;
	
	/*margin-top: 0;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;*/
}
.review-details {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin: 10px 0;
}
.review-details p {
    margin: 5px 0;
    line-height: 1.4;
}

.review-card p {
    margin: 5px 0;
    color: #555;
}

.review-card small {
    color: #777;
	
	/*.review-card small 
    color: #666;
    font-size: 0.9em;*/

}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.pagination a {
    padding: 8px 12px;
    background-color: #007bff;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
}

.pagination a:hover {
    background-color: #0056b3;
}

.pagination span {
    font-size: 1rem;
    color: #333;
}

/* Footer */
footer {
    background-color: #2c3e50; /* Dark background for contrast */
    color: #fff; /* White text for readability */
    padding: 40px 20px 20px 20px; /* Top, right, bottom, left padding */
    font-family: Arial, sans-serif; /* Consistent font */
}

/* Footer Content */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
    border-bottom: 1px solid #34495e; /* Subtle border between sections */
}

/* Footer Sections */
.footer-section {
    flex: 1;
    min-width: 250px; /* Ensure sections don't get too narrow */
    margin: 10px 20px; /* Spacing between sections */
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #3498db; /* Accent color for headings */
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #ecf0f1; /* Light gray for readability */
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    /*color: #ecf0f1; /* Light gray for links */
	color:grey;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db; /* Accent color on hover */
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
    color: #bdc3c7; /* Light gray for subtlety */
}


/* Listing Grid */
.listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* Listing Card */
.listing-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.listing-card:hover {
    transform: translateY(-5px);
}

.listing-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.listing-details {
    padding: 15px;
}

.listing-details h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.listing-details p {
    margin: 5px 0;
    color: #555;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
}

.button:hover {
    background-color: #0056b3;
}


/* Proprty-Details Styles */
.property-details_details{
	max-width: 800px;
    margin: 20px auto;
    overflow: hidden;
	/*border: 1px solid red;*/
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	/*background-color: blue;*/
	text-align: center;
}
/* Details Carousel Styles */
.details-carousel {
    position: relative;
    max-width: 800px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.details-carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.details-carousel-item {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
}

.details-carousel-image {
    width: 100%;
    height: auto;
    display: block;
}

.details-carousel-caption {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9em;
}

.details-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.5em;
}

.details-carousel-control.prev {
    left: 10px;
}

.details-carousel-control.next {
    right: 10px;
}

.details-carousel-dots {
    text-align: center;
    padding: 10px 0;
}

.details-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #bbb;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.details-dot.active {
    background-color: #333;
}

/* Details Thumbnails Styles */
.details-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.details-thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
}

.details-thumbnail.active {
    border-color: #333;
}

/* Details Full-Screen Button */
.details-full-screen-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.5em;
    z-index: 1000;
}

.details-full-screen-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .details-carousel {
        max-width: 100%;
    }

    .details-thumbnail {
        width: 60px;
        height: 45px;
    }
}

/*SUBMIT REVIEWS*/
.submit-review-btn {
    padding: 8px 16px;
    background-color: blue/*#4CAF50*/;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}
.submit-review-btn:hover {
    background-color: #45a049;
}
.submit-review-btn[title] {
    position: relative;
}
.submit-review-btn[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 100;
    margin-bottom: 5px;
}


/* Dashboard Styles */
.dashboard_container{
	max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.dashboard_welcome{
	max-width: 800px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.property-list, .review-list, .message-list {
    list-style: none;
    padding: 0;
}
.property-card, .review-card, .message-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.dashboard_button {
    display: inline-block;
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin: 5px 0;
}
.notification-method {
    margin: 10px 0;
}
.billing-section {
    background: #f0f8ff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}
.account-summary {
    margin-bottom: 20px;
}
.billing-actions {
    display: flex;
    gap: 10px;
}

.dashboard_viewed_properties {
    background: #f0f8ff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}
.dashboard_messages_section {
    background: #f0f8ff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

/*************************PAYMENT HISTORY**********************/
/* Payment History Styles */
.payment-summary {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.summary-card {
    flex: 1;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.summary-card h3 {
    margin-top: 0;
    color: #666;
    font-size: 1rem;
}

.summary-card p {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0;
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.payment-table th, 
.payment-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.payment-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.status-badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-badge.completed {
    background-color: #d4edda;
    color: #155724;
}

.status-badge.pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-badge.failed {
    background-color: #f8d7da;
    color: #721c24;
}

.text-success {
    color: #28a745;
}

.text-danger {
    color: #dc3545;
}

.receipt-link {
    color: #007bff;
    text-decoration: none;
}

.receipt-link:hover {
    text-decoration: underline;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.page-link {
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 4px;
    text-decoration: none;
    color: #007bff;
}

.no-payments {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 15px;
}


/* Property thumbnail styles */
/* Container for the thumbnail */
.property-thumbnail {
    display: inline-block; /* Change from flex item */
    width: 200px;  /* Fixed width - adjust this value as needed */
    height: 150px;   /* Fixed height - keep equal to width for square */
    border-radius: 4px;
    overflow: hidden;
    margin-right: 15px;
    border: 1px solid #eee;
	min-width: 200px;      /* Prevents shrinking */
}
/*.property-thumbnail {
    flex: 0 0 80px;       
    height: 80px;         
    min-width: 80px;      
    border-radius: 4px;
    overflow: hidden;
    margin-right: 15px;
    border: 1px solid #eee;
}*/

/* The image itself */
.review-property-image {
    width: 100%;          /* Fills the container */
    height: 100%;         /* Fills the container */
    object-fit: cover;    /* Ensures no distortion */
    object-position: center; /* Centers the image */
    transition: all 0.3s ease;
	
	 display: block; /* Remove inline spacing */
}


/* Hover effect (optional) */
.review-property-image:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Placeholder styling */
.property-image-placeholder {
    width: 100%;
    height: 100%;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 24px;
}
/*
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3 {
    color: #444;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
/*
header {
    background-color: #3498db;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

header h1 {
    margin: 0;
}

/* Forms */
/*
form {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

form input[type="text"],
form input[type="number"],
form input[type="email"],
form input[type="password"],
form textarea,
form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #3498db;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #2980b9;
}

/* Lists */
/*
ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    background-color: #fff;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

ul li h3 {
    margin-top: 0;
}

/* Messages */
/*
.message {
    background-color: #fff;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.message p {
    margin: 5px 0;
}

.message em {
    color: #777;
    font-size: 0.9em;
}

/* Buttons */
/*
.button {
    background-color: #3498db;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    display: inline-block;
}

.button:hover {
    background-color: #2980b9;
}

/* Responsive Design */
/*
@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 10px;
    }

    form input[type="text"],
    form input[type="number"],
    form input[type="email"],
    form input[type="password"],
    form textarea,
    form select {
        width: 100%;
    }
}