/* Page Layout - Footer always at bottom */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
}

/* General header styling */
.header {
    background: linear-gradient(90deg, #ea580c 0%, #eba269 80%) !important;
    padding: 20px 0;
}

/* Basic Styling for Navbar Links */
.header .navbar-dark .navbar-nav .nav-link {
    color: white !important;
    font-size: 16px;
    position: relative;
    padding: 0 10px;
    /* text-transform: uppercase; */
    transition: all 0.3s ease;
}

/* Hover Effect for Navbar Links */
.header .navbar-dark .navbar-nav .nav-link:hover {
    color: #f8f9fa !important;
}

/* Adding an underline effect and moving it upwards on hover */
.header .navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #f8f9fa; 
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

/* On hover, the underline expands from left to right */
.header .navbar-dark .navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Add a smooth scaling effect */
.header .navbar-dark .navbar-nav .nav-link:hover {
    transform: scale(1.1); /* Slightly enlarge the link on hover */
}

/* Navbar container styling (logo and navbar) */
.header .container {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.header #userName {
    max-width: 120px; /* Adjust width as needed */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: middle;
}

/* Ensuring the dropdown adapts to text size */
.header #userMenu {
    max-width: 150px;
    display: flex;
    align-items: center;
}

/* //// */
/* Smooth dropdown appearance */
/* Remove hover-based dropdown */
.nav-item.dropdown:hover .dropdown-menu {
    display: none;
}

/* Show dropdown when the parent element is focused (clicked) */
.nav-item.dropdown:focus-within .dropdown-menu,
.nav-item.dropdown:focus-within .nav-link i {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
    transition: all 0.3s ease-in-out;
}

/* Dropdown menu styling */
.dropdown-menu {
    min-width: 180px;
    padding: 10px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease-in-out;
}

/* Dropdown items */
.dropdown-item {
    font-size: 15px;
    font-weight: 500;
    transition: background 0.2s ease-in-out;
}

/* Hover effect for dropdown items */
.dropdown-item:hover {
    background-color: #f8f9fa;
    border-radius: 6px;
}

/* Profile & Logout Icons */
.dropdown-item i {
    font-size: 18px;
}

/* Adjust dropdown icon position */
.nav-link i {
    transition: transform 0.2s ease-in-out;
}

/* Rotate dropdown icon when menu is open */
.nav-item.dropdown:focus-within .nav-link i {
    transform: rotate(180deg);
}






/* Footer Styling */
.footer-body {
    margin-top: auto;
}

.footer-body footer {
    background: linear-gradient(90deg, #ea580c 0%, #eba269 80%) !important;
    color: white;
    padding: 40px 0;
}

.footer-body .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-body .logo-area {
    margin-right: 40px;
    margin-bottom: 20px;
}

.footer-body .logo-container {
    margin-bottom: 15px;
    display: inline-block;
}

.footer-body .logo {
    max-height: 68px;
}

.footer-body .logo h2 {
    color: black;
    font-size: 20px;
    line-height: 1.2;
}

.footer-body .tagline {
    line-height: 1.5;
    font-size: 14px;
}

.footer-body .footer-col {
    margin-bottom: 20px;
    min-width: 150px;
}

.footer-body .footer-col h3 {
    margin-bottom: 15px;
}

.footer-body .footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-body .footer-col li {
    margin-bottom: 10px;
}

.footer-body .footer-col a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-body .footer-col a:hover {
    color: #8f94fb;
    text-decoration: underline;
}

.footer-body .social {
    display: flex;
    gap: 15px;
}

.footer-body .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.footer-body .social a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-body .divider {
    width: 100%;
    height: 1px;
    background-color: #232736;
    margin: 20px 0;
}

.footer-body .copyright {
    width: 100%;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .footer-body .container {
        flex-direction: column;
    }
    
    .footer-body .footer-col {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .footer-body .logo-area {
        margin-right: 0;
        margin-bottom: 30px;
    }
}




/* General form styling */
.form-section {
    background: white !important;
    margin-bottom: 20px;
}

/* Form Container */
/* Form Section Background */
.form-section {
    background: linear-gradient(135deg, #ececec, #f8f9fa);
}

/* Form Container */
.form-section form {
    border: 1px solid #ddd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-section form:hover {
    transform: translateY(-5px);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

/* Labels with icons */
.form-section .col-form-label i {
    font-size: 1.5rem; /* Larger icon size for emphasis */
    vertical-align: middle;
}

/* Input and Select Fields */
.form-section input[type="text"],
.form-section select {
    font-size: 1rem;
    padding: 10px;
    border: 1px solid #ddd;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-section input[type="text"]:focus,
.form-section select:focus {
    border-color: #ea580c;
    box-shadow: 0 0 5px rgba(234, 88, 12,0.5);
    outline: none;
}

/* Submit Button */
.form-section .btn {
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    color: #fff !important;
    background: linear-gradient(90deg, #ea580c 0%, #eba269 100%) !important;
    border-color: #ea580c !important;
}

.form-section .btn:hover {
    background-color: #ea580c !important;
    transform: translateY(-3px);
}

.form-section .btn i {
    transition: transform 0.3s ease;
}

.form-section .btn:hover i {
    transform: translateX(5px);
}

#useLocation {
    cursor: pointer;
    transition: color 0.3s ease;
}
#useLocation:hover {
    color: #ea580c;
}




/* Analysis Section */
.analysis-section {
   background: white;
}

.analysis-section:hover {
    transform: translateY(-5px);
    /* box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1); */
}

/* Map Placeholder Styling */
.analysis-section .map-placeholder {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px; /* Adds spacing below the map */
}

/* Title Above Map */
.analysis-section .map-title {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    color: #242424;
    margin-bottom: 15px;
}

/* Map Container Styling */
.analysis-section .map-container {
    width: 100%;
    height: 400px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

/* Disclaimer Styling */
.analysis-section .disclaimer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #6c757d;
    text-align: justify;
    background: #f8f9fa;
    padding: 10px;
    border-left: 4px solid #d80909;
    border-radius: 5px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .analysis-section {
        padding: 20px 15px;
    }

    .analysis-section .map-container {
        height: 300px;
    }

    .analysis-section .map-title {
        font-size: 1.3rem;
    }
}




/* Rent analysis page style */
/* General Page Styles */
.page-rent-analysis {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f4f7fc;
}

h2, h3 {
    margin-bottom: 10px;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 30px;
}

.header-text {
    font-size: 1.8rem;
    color: #333;
    font-weight: bold;
}

/* Property Details */
.property-box {
    background: white !important;
    margin-bottom: 18px !important;;
    border-radius: 10px !important;;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;;
}

.property-details {
    padding: 20px;
}

.property-details h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.property-details p {
    margin: 8px 0;
    font-size: 16px;
    color: #555;
}

.property-image {
    padding: 5px 20px 7px 7px;
}

.property-image img {
    /* width: 100%;
    height: 222px; */
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}


/* Report Header */
.report-header {
    background: linear-gradient(90deg, #ea580c 0%, #eba269 80%);
    padding: 20px 0;
    margin-bottom: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.report-title {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin: 0;
    margin-bottom: 5px;
}

.report-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 500;
}

/* Property Report Box */
.property-report-box {
    background: white !important;
    margin-bottom: 25px !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
    padding: 20px;
    overflow: hidden;
}

/* Header Section */
.header-section {
    padding-bottom: 5px;
    margin-bottom: 5px;
    margin-left: -1px;
    margin-right: 1px;
    border-radius: 8px 8px 0 0;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #e5e7eb;
    overflow: hidden;
    border-radius: 6px;
}

.header-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(253, 126, 20, 0.3) 20%,
        rgba(253, 126, 20, 0.6) 50%,
        rgba(253, 126, 20, 0.3) 80%,
        transparent 100%);
    animation: ambientLight 3s ease-in-out infinite;
}

@keyframes ambientLight {
    0% {
        left: -100%;
    }
    50% {
        left: 0%;
    }
    100% {
        left: 100%;
    }
}

.header-section .report-main-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.header-section .report-sub-title {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.property-report-box .row {
    align-items: flex-start;
}

.property-image-left {
    padding: 0 15px 0 0;
    overflow: hidden;
}

.property-image-left a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-left: 10px;
}

.property-img {
    width: 100%;
    height: auto;
    min-height: 260px;
    max-height: 320px;
    max-width: 100%;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    display: block;
}

/* Content on Right */
.property-content-right {
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

/* Property Info Top */
.property-info-top {
    margin-bottom: 8px;
    padding-bottom: 0;
}

.property-info-top:first-child {
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 12px;
}

.property-address-line {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

/* Summary Section */
.summary-section {
    flex: 1;
}

.summary-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #ea580c;
}

/* Estimated Rent Full Box */
.estimated-rent-full-box {
    margin-bottom: 10px;
    padding: 15px 16px;
    border-radius: 8px;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.estimated-rent-full-box > * {
    position: relative;
    z-index: 1;
}

.estimated-rent-full-box::before {
    content: '';
    position: absolute;
    inset: -1.5px;
    border-radius: 9.5px;
    padding: 1.5px;
    background: linear-gradient(90deg, 
        #ea580c,
        #f97316,
        #fb923c,
        #f97316,
        #ea580c,
        #f97316,
        #fb923c,
        #f97316,
        #ea580c);
    background-size: 300% 100%;
    animation: ambientBorder 3s ease-in-out infinite;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: 0;
}

.estimated-rent-full-box::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 100%);
    z-index: 0;
}

@keyframes ambientBorder {
    0% {
        background-position: 0% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.rent-header-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.estimated-rent-full-box .estimated-label {
    font-size: 1rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
    display: inline-block;
    margin: 0;
}

.rent-arrow {
    font-size: 0.9rem;
    color: #ea580c;
    margin: 0;
}

.estimated-rent-full-box .estimated-rent {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ea580c;
    line-height: 1.1;
    display: inline-block;
    margin: 0;
}

.estimated-label {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.estimated-rent {
    font-size: 1.9rem;
    font-weight: 700;
    color: #ea580c;
    line-height: 1.3;
    display: block;
    margin-bottom: 10px;
}

/* Similar Units Info */
.similar-units-info {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

.estimated-rent-inline .similar-units-info {
    margin-top: 8px;
    color: #6b7280;
}

.estimated-rent-full-box .similar-units-info {
    margin: 0;
    color: #6b7280;
    font-size: 0.75rem;
    line-height: 1.2;
}

/* Property Info Grid */
.property-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.info-grid-item {
    background: white;
    padding: 12px 14px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.info-grid-item:hover {
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.15);
    transform: translateY(-2px);
    border-color: #ea580c;
}

.info-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1rem;
    color: #ea580c;
}

.info-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.info-content .info-label {
    font-size: 0.65rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.2;
}

.info-content .info-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
}

/* Comparable Note */
.comparable-note {
    background: #f9fafb;
    padding: 12px 15px;
    border-radius: 5px;
    margin-top: 16px;
    border-left: 3px solid #ea580c;
}

.comparable-note p {
    margin: 0;
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.6;
}

.comparable-note p strong {
    color: #6b7280;
    font-weight: 600;
}

/* Report Logo Footer */
.report-logo-footer {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid #e5e7eb;
    text-align: right;
}

.tracerent-brand {
    font-size: 1rem;
    font-weight: 700;
    color: #ea580c;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-section {
        padding: 20px 20px;
        margin: -20px -20px 20px -20px;
    }
    
    .header-section .report-main-title {
        font-size: 1.6rem;
    }
    
    .header-section .report-sub-title {
        font-size: 0.95rem;
    }
    
    .property-image-left {
        padding: 0 0 20px 0;
        overflow: hidden;
    }
    
    .property-image-left a {
        width: 100%;
        overflow: hidden;
    }
    
    .property-content-right {
        padding: 0;
    }
    
    .property-img {
        width: 100%;
        max-width: 100%;
        min-height: 250px;
        max-height: 300px;
        border-radius: 8px;
    }
    
    
    .rent-metrics-title {
        font-size: 1.2rem;
    }
    
    .rent-range-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .rent-range-labels {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .range-recommended {
        margin: 5px 0;
    }
    
    .comparison-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .estimated-rent-full-box .estimated-rent {
        font-size: 1.4rem;
    }
    
    .estimated-rent-full-box {
        padding: 10px 14px;
    }
    
    .property-info-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .info-grid-item {
        padding: 12px 14px;
    }
    
    .info-icon {
        width: 32px;
        height: 32px;
    }
    
    .info-icon i {
        font-size: 0.9rem;
    }
    
    .report-title {
        font-size: 1.6rem;
    }
    
    .report-subtitle {
        font-size: 1rem;
    }
}


/* Rent Range */
.rent-range-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.rent-range-box h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: #444;
}

/* Rent Bar Layout */
.rent-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-top: 20px;
}

/* Rent Labels */
.rent-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
}

.rent-label .label {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.rent-label .value {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

/* Min Rent (Left) */
.rent-label.min-rent {
    color: #FF5733; /* Color for Min Rent */
}

/* Max Rent (Right) */
.rent-label.max-rent {
    color: #28a745; /* Color for Max Rent */
}

/* Rent Bar */
.rent-bar .bar {
    flex-grow: 1;
    height: 10px;
    background-color: #e0e0e0;
    margin: 0 15px;
    border-radius: 5px;
    position: relative;
}

/* Average Rent with Icon */
.rent-bar .average-rent {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff9800;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.rent-bar .average-rent i {
    margin-right: 5px;
    font-size: 1.3rem;
}

/* Animations for Rent Range (optional) */
@keyframes rentIncrease {
    0% { width: 0%; }
    100% { width: 100%; }
}

.rent-bar .bar {
    animation: rentIncrease 2s ease-in-out;
}


/* Rent Range Section */
.rent-metrics-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #ea580c;
}

.rent-range-display {
    margin-bottom: 25px;
}

.rent-range-text {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 8px;
}

.range-label {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
}

.range-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ea580c;
}

.range-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    font-style: italic;
}

/* Rent Comparison */
.rent-comparison {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.comparison-label {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 500;
}

.comparison-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ea580c;
}

.comparison-note {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 15px 0 0 0;
    line-height: 1.5;
    font-style: italic;
}

/* Historical Trends */
.trend-img {
    width: 100%;
    height: auto;
    object-fit: contain; /* Ensures image fits within the box */
    border-radius: 8px;
}

/* Community Profile */
.amenities-content-container {
    margin-top: 20px;
}

.amenities-content-container .row {
    display: flex;
    align-items: stretch;
}

.amenities-content-container .row {
    display: flex;
    align-items: stretch;
}

.amenities-content-container .col-sm-4 {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 500px;
}

.amenities-content-container .col-sm-8 {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 500px;
}

.amenity-table-container {
    flex: 1 1 0;
    overflow: hidden;
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    padding: 20px;
    position: relative;
    min-height: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.amenity-table-wrapper {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    padding-right: 5px;
}

/* Custom scrollbar for amenity table wrapper */
.amenity-table-wrapper::-webkit-scrollbar {
    width: 8px;
}

.amenity-table-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.amenity-table-wrapper::-webkit-scrollbar-thumb {
    background: #ea580c;
    border-radius: 10px;
}

.amenity-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #f97316;
}

.amenities-tables {
    width: 100%;
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.amenities-tables thead {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
}

.amenities-tables thead th {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    color: #fff;
    font-weight: 600;
    padding: 14px 18px;
    border: none;
    text-align: left;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    border-radius: 8px 8px 0 0;
}

.amenities-tables tbody td {
    padding: 16px 18px;
    background: #fff;
    border: 1px solid #f0f0f0;
    color: #111827;
    font-size: 0.9rem;
    vertical-align: middle;
}

.amenities-tables tbody td:last-child {
    padding-right: 25px;
}

.amenities-tables tbody td:first-child {
    border-left: 3px solid #ea580c;
    border-radius: 6px 0 0 6px;
}

.amenities-tables tbody td:last-child {
    border-radius: 0 6px 6px 0;
}

.amenity-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 100%);
    color: #ea580c;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #ffe8d6;
}

.amenities-tables tbody tr {
    transition: all 0.3s ease;
}

.amenities-tables tbody tr:hover td {
    background: #fff5f0;
    border-color: #ffe8d6;
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.1);
}

.amenities-tables tbody tr:hover td:first-child {
    border-left-color: #f97316;
}

/* Category-wise Amenities */
.amenity-categories {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.amenity-category-group {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

.amenity-category-group:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.category-header {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 14px 18px;
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.category-header:hover {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 100%);
}

.category-header.active {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 100%);
    border-bottom-color: #ffe8d6;
}

.category-header.active .category-title {
    color: #111827;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #111827;
    font-size: 0.95rem;
}

.category-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: #ea580c;
}

.category-header.active .category-icon {
    transform: rotate(180deg);
    color: #fff;
}

.category-name {
    flex: 1;
    text-transform: capitalize;
}

.category-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.category-header.active .category-count {
    background: rgba(255, 255, 255, 0.3);
}

.category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.category-content.active {
    max-height: none;
    overflow: visible;
}

.category-content .amenities-tables {
    margin: 0;
    border-spacing: 0;
}

.category-content .amenities-tables thead th {
    background: #f8f9fa;
    color: #6b7280;
    font-size: 0.8rem;
    padding: 10px 18px;
    border-radius: 0;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 5;
}

.view-amenity-btn {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.view-amenity-btn:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(234, 88, 12, 0.3);
}

.view-amenity-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(234, 88, 12, 0.2);
}

.view-amenity-btn i {
    font-size: 0.9rem;
}

.view-amenity-btn span {
    font-size: 0.85rem;
}

/* Custom scrollbar for category content */
.category-content::-webkit-scrollbar {
    width: 6px;
}

.category-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.category-content::-webkit-scrollbar-thumb {
    background: #ea580c;
    border-radius: 10px;
}

.category-content::-webkit-scrollbar-thumb:hover {
    background: #f97316;
}

.category-content .amenities-tables tbody td {
    padding: 12px 18px;
    border: none;
    border-bottom: 1px solid #f3f4f6;
}

.category-content .amenities-tables tbody td:first-child {
    border-left: none;
    border-radius: 0;
}

.category-content .amenities-tables tbody td:last-child {
    border-radius: 0;
}

.category-content .amenities-tables tbody tr:last-child td {
    border-bottom: none;
}

.amenities-section .map-wrapper {
    flex: 1;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    height: 100%;
}

.amenities-section #map {
    flex: 1;
    width: 100%;
    min-height: 450px;
    border-radius: 8px;
    background-color: #f3f4f6;
    border: 1px solid #e5e7eb;
}

/* Custom scrollbar for amenity table container */
.amenity-table-container::-webkit-scrollbar {
    width: 8px;
}

.amenity-table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.amenity-table-container::-webkit-scrollbar-thumb {
    background: #ea580c;
    border-radius: 10px;
}

.amenity-table-container::-webkit-scrollbar-thumb:hover {
    background: #f97316;
}

.amenities-table th, .amenities-table td {
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
}

.amenities-table th {
    background-color: #f4f4f4;
}


/* Box Styling */
.box-shadow {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.border-radius {
    border-radius: 8px;
}


/* Style the button with the 'download-button' class */
.download-button {
    background: linear-gradient(90deg, #ea580c 0%, #eba269 100%) !important;
    color: white !important;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-button:hover {
    background: linear-gradient(90deg, #f97316 0%, #ea580c 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(234, 88, 12, 0.3);
}

.download-button:active {
    box-shadow: 0 4px 8px rgba(234, 88, 12, 0.2);
    transform: translateY(0);
}

/* Action Buttons Container */
.action-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 20px;
    padding: 20px 0;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.action-btn i {
    font-size: 18px;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.action-btn:hover::before {
    left: 100%;
}

.analyze-btn {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: #fff;
}

.analyze-btn:hover {
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(75, 85, 99, 0.3);
}

.download-btn {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    color: #fff;
}

.download-btn:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(234, 88, 12, 0.4);
}

.action-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive styles for action buttons */
@media (max-width: 768px) {
    .action-buttons-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
    }
    
    .action-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Report Section Animation - Print Effect */
#report-section {
    transition: opacity 1s ease, max-height 1s ease;
    overflow: hidden;
}

/* Optional: Add animation to make it appear smoothly */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Apply animation to the button with class 'download-button' */
.download-button {
    animation: fadeIn 1s ease-out;
}

.text-orange{
    color: #ea580c!important;
}



/* ======== Price Page =========*/
.price-body .pricing-section {
    background: #ffffff;
    color: black;
}

.price-body .card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
    background: #fff;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.price-body .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.price-body .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-body .card-title {
    font-size: 24px;
    font-weight: bold;
    color: #ea580c;
}

.price-body .price-tag {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 10px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #28a745;
}

.price-body .price {
    font-size: 30px;
    font-weight: bold;
    color: #28a745;
}

.price-body .credits {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
}

.price-body .btn-subscribe {
    background: linear-gradient(90deg, #ea580c 0%, #eba269 100%) !important;
    border: none;
    color: white;
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.price-body .btn-subscribe:hover {
    background: linear-gradient(90deg, #ea580c 0%, #eba269 100%) !important;
    transform: scale(1.05);
}

.price-body .feature-list {
    list-style: none;
    padding: 0;
    font-size: 16px;
    color: #333;
}

.price-body .feature-list li {
    margin-bottom: 8px;
    font-weight: 500;
}

.price-body .feature-list li i {
    color: #28a745;
    margin-right: 10px;
}


/* ======== Signup Page =========*/
.signup-body {
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.signup-body .signup-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

/* Left Side (Package Details) */
.signup-body .signup-left {
    flex: 1;
    background: linear-gradient(90deg, #ea580c 0%, #eba269 80%);
    color: white;
    /* padding: 3rem; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* clip-path: polygon(0 0, 100% 0, 50% 100%, 0% 100%); */
    position: absolute;
    left: 0;
    width: 60%;
    height: 100%;
}

.signup-body .signup-left h2 {
    font-size: 28px;
    font-weight: 600;
}



/* Right Side (Signup Form) */
.signup-body .signup-right {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    width: 100%;
    height: 100%;
    margin-left: 60%;
}

.signup-body .signup-right h2 {
    font-size: 24px;
    font-weight: 600;
    color: #ba3e08;
    margin-bottom: 20px;
}

.signup-body .form-control {
    width: 100%;
    /* max-width: 320px; */
    border-radius: 25px;
    border: 1px solid #ddd;
    padding: 12px;
}

.signup-body .form-control:focus {
    border-color: #ea580c;
    box-shadow: 0 0 5px rgba(234, 88, 12, 0.5);
}

.signup-body .btn-signup {
    width: 100%;
    /* max-width: 320px; */
    padding: 12px;
    border-radius: 25px;
    background: #ea580c;
    color: white;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.signup-body .btn-signup:hover {
    background: #ba3e08;
}

/* Responsive Design */
@media (max-width: 768px) {
    .signup-body .signup-container {
        flex-direction: column;
        overflow: auto;
    }

    .signup-body .signup-left {
        width: 100%;
        /* height: 40%; */
        clip-path: none;
        position: relative;
    }

    .signup-body .signup-right {
        width: 100%;
        /* height: 60%; */
        margin-left: 0;
    }
}


/* ======== Login Page =========*/
.login-body {
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Login Container */
.login-body .login-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    position: relative;
    /* overflow: hidden; */
}

/* Left Side (Sign-Up Section) */
.login-body .login-left {
    flex: 1;
    background: linear-gradient(90deg, #ea580c 0%, #eba269 80%);
    color: white;
    clip-path: polygon(0 0, 100% 0, 50% 100%, 0% 100%);
    position: absolute;
    left: 0;
    width: 60%;
    height: 100%;
}

.login-body .feature-links {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    /* margin-top: 90px;  */
    margin-right: 255px;
}

.login-body .feature-links-image  img {
    height: 460px; 
    width: auto; 
}


.login-body .signup-btn {
    margin-top: 1rem;
    padding: 10px 20px;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.login-body .signup-btn:hover {
    background: white;
    color: #ba3e08;
}

/* Right Side (Login Form) */
.login-body .login-right {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    width: 100%;
    height: 100%;
    margin-left: 60%;
}

.login-body .login-right h2 {
    font-size: 24px;
    font-weight: 600;
    color: #ba3e08;
    margin-bottom: 20px;
}

.login-body .form-control {
    width: 100%;
    /* max-width: 320px; */
    border-radius: 25px;
    border: 1px solid #ddd;
    padding: 12px;
}

.login-body .form-control:focus {
    border-color: #ea580c;
    box-shadow: 0 0 5px rgba(234, 88, 12, 0.5);
}

.login-body .btn-login {
    width: 100%;
    /* max-width: 320px; */
    padding: 12px;
    border-radius: 25px;
    background: #ea580c;
    color: white;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.login-body .btn-login:hover {
    background: #ba3e08;
}

.login-body .forgot-password {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #ea580c;
    text-decoration: none;
    font-size: 14px;
}

.login-body .forgot-password:hover {
    text-decoration: underline;
}



.sso-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 24px 0 16px;
    color: #6b7280;
    font-weight: 500;
    font-size: 0.95rem;
}

.sso-divider::before,
.sso-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e5e7eb;
}

.sso-divider:not(:empty)::before {
    margin-right: 0.75em;
}

.sso-divider:not(:empty)::after {
    margin-left: 0.75em;
}

.auth-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 16px;
}

.btn-sso {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 100px;
    flex: 1 1 calc(33.333% - 12px); /* 3 in a row on desktop */
    max-width: 160px;
}

.btn-sso:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-color: #d1d5db;
}

.btn-sso i {
    margin-right: 8px;
    font-size: 1.2em;
}

.btn-text {
    font-weight: 600;
    font-size: 0.95rem;
    color: #374151;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .auth-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-sso {
        width: 100%;
        max-width: 100%;
    }
}







/* Responsive Design */
@media (max-width: 768px) {
    .login-body .login-container {
        flex-direction: column;
    }

    .login-body .login-left {
        width: 100%;
        /* height: 40%; */
        clip-path: none;
        position: relative;
    }
    
    .login-body .login-right {
        width: 100%;
        /* height: 60%; */
        margin-left: 0;
    }

    .login-body .feature-links {
        margin-top: unset; 
        margin-right: unset;
    }
    
    .login-body .feature-links-image  img {
        height: 190px; 
        width: auto; 
    }
}

.table>:not(:first-child) {
    border-top: none !important;
}

.community-section .analyst-commentary{
    font-size: 13px;
}

.community-section .copyright-text{
    font-size: 13px;
}

/* Properties Section Styling */
.rent-metrics-box {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 0;
}

/* Consistent margin-top for all sections */
.rent-range-section,
.properties-section,
.trends-section,
.amenities-section,
.community-section {
    margin-top: 20px;
}


.propertes-map-container {
    margin-top: 20px;
}

.propertes-map-container .row {
    display: flex;
    align-items: stretch;
}

.properties-summary-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.properties-summary {
    background: white;
    padding: 12px 14px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    width: 100%;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.properties-summary:hover {
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.15);
    transform: translateY(-2px);
    border-color: #ea580c;
}

.summary-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.5;
}

.summary-label {
    font-size: 0.85rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 5px;
}

.summary-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

.propertes-map-container .col-sm-7 {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 500px;
}

.propertes-map-container .col-sm-5 {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 500px;
}

.properties-table-container {
    flex: 1 1 0;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    padding: 0;
    position: relative;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.properties-table-wrapper {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
}

.map-wrapper {
    background: #fff;
    padding: 1px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    height: 100%;
}

#propertiesMap {
    flex: 1;
    width: 100%;
    min-height: 450px;
    border-radius: 8px;
}

.properties-table {
    width: 100%;
    margin-bottom: 0;
    border-collapse: collapse;
}

.properties-table thead {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
}

.properties-table thead th {
    background: #f8f9fa;
    color: #111827;
    font-weight: 600;
    padding: 16px 15px;
    border-bottom: 2px solid #ea580c;
    text-align: left;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.properties-table tbody td {
    padding: 14px 15px;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
    font-size: 0.9rem;
    vertical-align: middle;
}

.properties-table tbody tr {
    transition: background-color 0.15s ease;
    border-bottom: 1px solid #f3f4f6;
}

.properties-table tbody tr:nth-child(even) {
    background-color: #f9fafb;
}

.properties-table tbody tr:hover {
    background-color: #fff5f0;
}

.properties-table tbody tr:last-child td {
    border-bottom: none;
}

.rent-cell {
    color: #ea580c;
    font-weight: 700;
    font-size: 1rem;
}

.bed-badge {
    display: inline-block;
    background: #ea580c;
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.no-records {
    text-align: center;
    padding: 40px !important;
    color: #9ca3af !important;
    font-style: italic;
}

.view-property-btn {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.view-property-btn:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(234, 88, 12, 0.3);
}

.view-property-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(234, 88, 12, 0.2);
}

.view-property-btn i {
    font-size: 0.9rem;
}

.view-property-btn span {
    font-size: 0.85rem;
}

/* Custom scrollbar for table container */
.properties-table-container::-webkit-scrollbar {
    width: 8px;
}

.properties-table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.properties-table-container::-webkit-scrollbar-thumb {
    background: #ea580c;
    border-radius: 10px;
}

.properties-table-container::-webkit-scrollbar-thumb:hover {
    background: #f97316;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .properties-summary-wrapper {
        flex-direction: column;
    }
    
    .properties-summary {
        width: 100%;
    }
    
    .map-wrapper {
        margin-top: 20px;
        height: 400px;
    }
    
    .properties-table-container {
        height: 400px;
    }
    
    #propertiesMap {
        min-height: 100%;
    }
}