/* Fullscreen Property Map */
#fullscreen-property-map {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 10;
}

body#has-fullscreen-map {
    overflow: hidden;
    margin: 0;
    height: 100vh;
}

/* Side Panel */
.side-panel {
    position: fixed;
    left: 0;
    top: 80px;
    width: 30vw;
    height: 100vh;
    z-index: 1000;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
    border-right: 1px solid #ccc;
    overflow-y: auto;
    padding: 20px;
}

/* Close Button */
.close-button {
    position: fixed; /* Make the button fixed within the panel */
    top: 80px;
    left: 27vw;
    z-index: 1001;
    background: #ff4d4d;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;;
}


/* Comments List */
.comments-list {
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

.comment-item {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.comment-author {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.comment-content {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* Attachments List */
.attachments-list {
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

.attachment-item {
    margin-bottom: 10px;
}

.attachment-item a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}

.attachment-item a:hover {
    text-decoration: underline;
}

/* Image Attachments */
.attachment-image {
    max-width: 50%;
    height: auto;
    margin-top: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Loading Indicator */
.loading-indicator {
    font-size: 16px;
    color: #555;
    text-align: center;
    margin: 20px 0;
}

/* Property Header */
.property-header {
    position: fixed;
    left:0px;
    top:80px;
    width:30vw;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
    background-color: white;
}

/* Property Title Link */
.property-title-link {
    font-size: 18px;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
    display: block; /* Ensures it spans the full width */
    margin-bottom: 5px;
}

.property-title-link:hover {
    text-decoration: underline;
    color: #0056b3; /* Darker shade for hover effect */
}

/* Property Address */
.property-address {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

