body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    color: white;
    overflow: hidden; /* Prevent page overflow */
}
.background {
    position: relative;
    background-image: url('image.png'); /* Replace with your image path */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center; /* Center items vertically */
    text-align: center;
}
.background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15); /* Dark overlay */
}
.container {
    position: relative;
    z-index: 1; /* Ensure container is above the overlay */
    text-align: center;
}
.title {
    font-size: 2.5em; /* Reduce font size */
    margin-bottom: 20px;
}
.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* Align cards to the left */
    /* padding: 10px 0; */
    /* background: rgba(0, 0, 0, 0.3); Dark background for the card section */
    /* backdrop-filter: blur(1.8px); Apply blur effect */
    width: 100%;
    position: absolute;
    bottom: 22px; 
    z-index: 3; 
}


.cards {
    display: none;
    /* Initially hidden */
    opacity: 0;
    /* Fully transparent */
    transition: opacity 0.5s ease;
    /* Smooth transition for opacity */
}

.cards.visible {
    display: flex;
    /* Make it visible */
    opacity: 1;
    /* Fully visible */
}

.card-topic {
    font-weight: bold;
    margin-bottom: 3px;
}

.color-bar {
    width: 5px;
    height: 100%;
    background-color: #00ff00;
    display: inline-block;
    margin-right: 10px;
}

.image-viewer {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    /* Reduced from 100% */
    height: 100%;
    /* Reduced from 100% */
    background-color: rgba(0, 0, 0, 0.9);
    border: 2px solid #444;
    border-radius: 8px;
    padding: 0;
    display: none;
    z-index: 9999;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.image-viewer img {
    max-width: 100%;
    max-height: 100%;
}

.close-button {
    position: absolute;
    top: 60px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
}

.close-button:hover {
    background-color: rgba(255, 0, 0, 0.8);
}

/* Add a fullscreen toggle button */
.fullscreen-toggle {
    position: absolute;
    top: 10px;
    right: 50px;
    /* Position it to the left of the close button */
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
    z-index: 10000;
}

.fullscreen-toggle:hover {
    background-color: rgba(0, 100, 255, 0.8);
}

/* Add this class to toggle fullscreen mode */
.image-viewer.fullscreen {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: none;
    border-radius: 0;
    border: none;
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.image-button {
    background: none;
    border: none;
    padding: 0;
    margin: 0 10px;
    cursor: pointer;
}

.image-button img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Bottom Navigation Bar */
.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 4px 20px;
    z-index: 1000;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.5);
    /* Make it visible by default */
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.5s ease;
}

/* Keep the visible class for toggling */
.bottom-nav.visible {
    opacity: 1;
    pointer-events: auto;
}

.bottom-nav.hidden {
    opacity: 0;
    pointer-events: none;
}

.nav-item {
    text-align: left;
    text-align: left;
    /* Align text to the left */
    margin-right: 50px;
    /* Add spacing between items */
    padding-right: 40px;
    /* Add padding for spacing before the border */
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    /* Split line between items */
}

/* Remove the border for the last item */
.nav-item:last-child {
    border-right: none;
}

.nav-button {
    background: none;
    border: none;
    color: white;
    font-size: 14px;
    /* Font size for button text */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align content to the left */
    cursor: pointer;
}

.nav-button:hover {
    color: #00ffff;
    /* Highlight color on hover */
}

.nav-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 5px;
}

.nav-button span {
    font-size: 15px;
    /* Font size for the text */
    letter-spacing: 1px;
    /* Add spacing between letters */
    word-spacing: 5px;
    /* Add spacing between words */
}

.custom-button-container {
    position: absolute;
    bottom: 60px;
    /* Adjust to place above the bottom navigation bar */
    left: 50%;
    transform: translateX(-50%);
    /* Center horizontally */
    z-index: 1000;
    /* Ensure it appears above other elements */
}

.custom-svg-button {
    background-color: #000;
    /* Button background */
    border: none;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.custom-svg-button:hover {
    background-color: #333;
    /* Hover background */
    transform: scale(1.1);
    /* Slight zoom effect */
}

.custom-svg-icon {
    width: 24px;
    height: 24px;
    fill: #fff;
    /* Icon color */
}

#dynamic-buttons-container {
    position: fixed;
    bottom: 40px;
    /* Adjust to match the UI */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    background-color: rgb(0 0 0 / 56%);
    /* Dark background */
    border-radius: 12px;
    /* Rounded corners */
    padding: 10px 20px;
    /* Padding inside the container */
    gap: 15px;
    /* Space between buttons */
    z-index: 1000;
    opacity: 1;
    /* Fully visible by default */
    pointer-events: auto;
    /* Allow interaction */
    transition: opacity 0.5s ease;
    /* Smooth transition for opacity */
}

#dynamic-buttons-container.hidden {
    opacity: 0;
    /* Fully transparent */
    pointer-events: none;
    /* Disable interaction when hidden */
}

.dynamic-button {
    width: 35px;
    /* Set fixed button width */
    height: 35px;
    /* Set fixed button height */
    background: #000000d9;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    /* Rounded corners for the button */
    overflow: hidden;
    /* Ensure the image does not overflow the button */
    transition: transform 0.3s ease;
}

.dynamic-button:hover {
    transform: scale(1.1);
    /* Slight zoom effect on hover */
}

.dynamic-button img {
    width: 162%;
    /* Stretch the image to fill the button width */
    height: 108%;
    /* Stretch the image to fill the button height */
    object-fit: fill;
    /* Ensure the image fully fills the button size */
}

.dynamic-button svg {
    width: 100%;
    /* Ensure SVG fits the button size */
    height: 100%;
    fill: #fff;
    /* White color for SVG icons */
}

/* Change the text color in the Panolens.js control bar */
.panolens-container .panolens-control-bar {
    color: rgb(0, 0, 0) !important;
    /* Set text color to white */
    background-color: black !important;
    /* Set background color to black */
}

/* Change the background color of the control bar */
.panolens-container .panolens-control-bar {
    background-color: black !important;
    /* Set control bar background to black */
}

/* Change the text color in the settings menu buttons */
.panolens-container .panolens-control-bar .panolens-button {
    color: rgb(0, 0, 0) !important;
    /* Set button text color to white */
    background-color: black !important;
    /* Set button background color to black */
}

/* Change the hover color for buttons */
.panolens-container .panolens-control-bar .panolens-button:hover {
    color: #00ffff !important;
    /* Set hover text color to cyan */
    background-color: #333 !important;
    /* Set hover background color to dark gray */
}

/* Change the background color of the settings dropdown */
.panolens-container .panolens-control-bar .panolens-dropdown {
    background-color: white !important;
    /* Set dropdown background color to white */
    color: black !important;
    /* Set all text color to black */
}

.panolens-container .panolens-control-bar .panolens-dropdown a {
    color: black !important;
    /* Set all <a> tag text color to black */
    text-decoration: none;
    /* Remove underline from links */
}

.panolens-container .panolens-control-bar .panolens-dropdown a:hover {
    color: #007bff !important;
    /* Set hover text color to blue */
    background-color: #000000 !important;
    /* Set hover background color to light gray */
}

.panolens-container .panolens-control-bar .panolens-dropdown span {
    color: black !important;
    /* Set all <span> text color to black */
}

.panolens-container .panolens-control-bar .panolens-dropdown-item {
    color: black !important;
    /* Set dropdown item text color to black */
    background-color: white !important;
    /* Set dropdown item background color to white */
    font-size: 14px !important;
    /* Adjust font size */
    font-weight: bold !important;
    /* Make the text bold */
    padding: 10px 15px !important;
    /* Add padding for better spacing */
    border-radius: 5px;
    /* Add rounded corners */
}

.panolens-container .panolens-control-bar .panolens-dropdown-item:hover {
    background-color: #f0f0f0 !important;
    /* Light gray background on hover */
    color: #007bff !important;
    /* Blue text on hover */
}

/* Change the text color of dropdown items */
.panolens-container .panolens-control-bar .panolens-dropdown-item {
    color: rgb(6, 0, 0) !important;
    /* Set dropdown item text color to white */
    background-color: black !important;
    /* Set dropdown item background color to black */
}

/* Change the hover color for dropdown items */
.panolens-container .panolens-control-bar .panolens-dropdown-item:hover {
    background-color: #333 !important;
    /* Set hover background color to dark gray */
    color: #00ffff !important;
    /* Set hover text color to cyan */
}

/* Change the text color in the settings menu (gear icon dropdown) */
.panolens-container .panolens-control-bar .panolens-settings {
    color: rgb(16, 5, 5) !important;
    /* Set settings text color to white */
    background-color: black !important;
    /* Set settings background color to black */
}

/* Change the text color of the fullscreen button */
.panolens-container .panolens-control-bar .panolens-fullscreen-button {
    color: white !important;
    /* Set fullscreen button text color to white */
    background-color: black !important;
    /* Set fullscreen button background color to black */
}

/* Target the 360 image viewer container */
#image-viewer {
    background-color: black !important;
    /* Set the background color of the viewer to black */
    color: white !important;
    /* Ensure the text color is white for contrast */
}

/* Target all text inside the viewer container */
#image-viewer span,
#image-viewer a,
#image-viewer p {
    background-color: black !important;
    /* Set the background color of text to black */
    color: white !important;
    /* Set the text color to white */
    padding: 5px;
    /* Add padding around the text */
    border-radius: 5px;
    /* Add rounded corners for better styling */
    display: inline-block;
    /* Ensure the background color wraps around the text */
}

/* Style the dropdown menu in the Panolens.js viewer */
#viewer-container .panolens-container .panolens-control-bar .panolens-dropdown {
    background-color: black !important;
    /* Set dropdown background color to black */
    color: white !important;
    /* Set dropdown text color to white */
}

/* Style dropdown items */
#viewer-container .panolens-container .panolens-control-bar .panolens-dropdown-item {
    background-color: black !important;
    /* Set dropdown item background color to black */
    color: white !important;
    /* Set dropdown item text color to white */
}

/* Hover effect for dropdown items */
#viewer-container .panolens-container .panolens-control-bar .panolens-dropdown-item:hover {
    background-color: #333 !important;
    /* Dark gray background on hover */
    color: #00ffff !important;
    /* Cyan text on hover */
}

.image-text-container {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0);
    /* Initially transparent */
    padding: 5px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    /* Smooth transition for background color */
    transition: opacity 0.5s ease;
}

.image-text-container:hover {
    background-color: rgba(0, 0, 0, 0.8);
    /* Set background color on hover */
    border-radius: 20px 20px 20px 0px;
}

.styled-image {
    width: 40px;
    height: 40px;
    border-radius: 40px 40px 40px 0px;
    margin-right: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    cursor: pointer;
}

.text-content {
    max-width: 300px;
    font-size: 14px;
    opacity: 0;
    /* Hide the text by default */
    transition: opacity 0.3s ease;
    /* Smooth transition for showing text */
}

.image-text-container:hover .text-content {
    opacity: 1;
    /* Show the text when hovering over the container */
}

.text-content h3 {
    font-size: 1.15rem;
    /* Set the font size for h3 */
}

.dynamic-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.dropdown-content button {
    color: white;
    padding: 10px 12px;
    text-align: left;
    text-decoration: none;
    display: block;
    width: 100%;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.dropdown-content button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.dropdown-active .dropdown-content {
    display: block;
}

.dropdown-button {
    position: relative;
}

.dropdown-button::after {
    content: "▼";
    font-size: 8px;
    margin-left: 5px;
    position: absolute;
    top: -8px;
    right: -10px;
}

.dynamic-card {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    perspective: 1000px;
    max-width: 300px;
}

.dynamic-card:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.card-content {
    display: flex;
    flex-direction: column;
    background-color: #0a0a0ab0;
    backdrop-filter: blur(5px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.dynamic-card:hover .card-content {
    transform: rotateY(5deg);
}

.card-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.card-text-content {
    padding: 5px;
}


.card-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #fff;
}

.card-description {
    margin: 0;
    font-size: 14px;
    color: #fff;
}

.persistent-controls {
    position: fixed;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    z-index: 10000;
    /* Ensure it's above other elements */
}

.persistent-button {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s, transform 0.2s;
}

.persistent-button:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}


.downbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* Align cards to the left */
    /* padding: 10px 0; */
    background: rgba(0, 0, 0, 0.3); /* Dark background for the card section */
    backdrop-filter: blur(1.8px); /* Apply blur effect */
    width: 100%;
    position: absolute;
    bottom: 0px; 
    z-index: 3; 
}

.card {
    background: rgba(255, 255, 255, 0.0);
    padding: 10px; /* Reduce padding */
    margin: 10px;
    border-radius: 5px;
    width: calc(77% / 6 - 20px); /* Expand width to fit 6 cards per row */
    text-align: left;
    transition: background 0.3s ease;
    cursor: pointer;
    position: relative;
    max-height: 353px; /* Set a fixed height for the card */
    overflow-y: auto; /* Enable vertical scrolling */
    padding: 1px; /* Add some padding for better readability */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}
.card button {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px); /* Apply blur effect */
    border: none;
    color: white;
    padding: 3px;
    margin: 1px 0; /* Reduce gap between buttons */
    font-size: 0.9em;
    cursor: pointer;
    width: 100%;
    text-align: left;
}
.card button:hover {
    background: rgba(0, 0, 0, 0.7);
}
.card-topic {
    display: flex;
    align-items: center;
    font-size: 1.0em;
    font-weight: bold;
    margin-bottom: 6px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px;
    border-radius: 5px;
    position: sticky;
    top: 0;
    z-index: 1;
}
.card-topic .icon {
    width: 20px;
    height: 20px;
    margin-left: auto;
}
.card-topic .color-bar {
    width: 5px;
    height: 100%;
    background-color: #ff0000; /* Default color, can be changed per card */
    margin-right: 10px;
}
.card::-webkit-scrollbar {
    width: 8px;
}
.card::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}
.card::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 5px;
}
nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5); /* Set background opacity to 0.5 */
    backdrop-filter: blur(10px); /* Apply blur effect */
    padding: 10px 0;
    z-index: 2;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start; /* Align items to the left */
    flex-wrap: wrap; /* Make the nav items wrap on smaller screens */
}

nav ul li {
    margin: 0 70px; /* Further increase horizontal space between words */
    position: relative; /* Position relative for the vertical line */
}

nav ul li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -70px; /* Adjust the position of the line */
    top: 50%;
    width: 1px;
    height: 20px; /* Adjust the height of the vertical line */
    background: rgba(255, 255, 255, 0.3); /* Decrease color and opacity of the vertical line */
    transform: translateY(-50%);
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

nav ul li a:hover {
    text-decoration: underline;
}

@media (max-width: 1200px) {
    nav ul li {
        margin: 0 10px;
    }
}

@media (max-width: 992px) {
    nav ul li {
        margin: 0 8px;
    }
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: flex-start; /* Align items to the left */
    }
    nav ul li {
        margin: 10px 0;
    }
}

@media (max-width: 576px) {
    .title {
        font-size: 2em; /* Adjust font size for extra small screens */
    }
    nav ul li {
        margin: 8px 0;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-direction: column;
        align-items: flex-start; /* Align items to the left */
    }
    nav ul li {
        margin: 5px 0;
    }
}

@media (max-width: 360px) {
    .title {
        font-size: 1.5em; /* Adjust font size for very small screens */
    }
    nav ul li {
        margin: 3px 0;
    }
}



#apartment-selection-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 20000; /* Above everything else */
    display: none; /* Hidden by default */
    transition: opacity 0.3s ease;
    backdrop-filter: blur(3px);
}

.overlay-content {
    display: flex;
    height: 100%;
    max-width: 1800px;
    margin: 0 auto;
    position: relative;
}


.results-info {
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: 14px;
    margin-top: 5px;
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.action-btn {
    background: none;
    border: none;
    color: white;
    font-size: 12px;
    cursor: pointer;
    opacity: 0.8;
}

.action-btn:hover {
    opacity: 1;
}

/* Apartment Listings */
.apartment-listings {
    width: 450px;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    padding-top: 120px; /* Space for filters */
    max-height: 100%;
}

.apartment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: background-color 0.2s;
}

.apartment-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.apartment-item.active {
    background-color: rgba(255, 255, 255, 0.1);
}

.apt-info {
    display: flex;
    gap: 20px;
}

.apt-size {
    font-size: 18px;
    font-weight: bold;
    min-width: 80px;
}

.apt-details {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.apt-price {
    font-size: 16px;
    font-weight: bold;
}

.apt-select-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: transparent;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.apt-select-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Floor Plan Container */
.floor-plan-container {
    flex: 1;
    padding: 100px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.floor-plan-container h2 {
    color: #bdbab6;
    font-size: 24px;
    padding-left: 20px;
    margin-bottom: 30px;
    font-weight: normal;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.floor-plan-image {
    max-width: 80%;
    max-height: 80%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.floor-plan-image img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    border: 0.5px solid rgba(255, 255, 255, 0.5);
}

/* Toggle Button */
.toggle-ui-btn {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    cursor: pointer;
    z-index: 20002;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .apartment-listings {
        width: 350px;
    }
}

@media (max-width: 768px) {
    .overlay-content {
        flex-direction: column;
    }
    
    .apartment-listings {
        width: 100%;
        height: 50%;
        padding-top: 100px;
    }
    
    .floor-plan-container {
        height: 50%;
    }
    
    .toggle-ui-btn {
        top: 50%;
        right: 10px;
    }
}

/* Apartment Listing Header - updated style to match image */
.apartment-listing-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 30px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.header-column {
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.floor-col {
    width: 80px;
}

.unit-col {
    width: 120px;
}

.sqft-col {
    width: 80px;
}

.status-col {
    width: 100px;
}