/* hollows-sitemap.css */

/* General styles for the SVG container */
#hollows-sitemap-svg {
    width: 100%;
    height: auto;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Style the lot paths within the SVG */
.lot-path {
    fill: #e0e0e0;
    stroke: #aaa;
    stroke-width: 1px;
    transition: fill 0.3s ease;
    cursor: pointer;
}

/* Hover effect */
.lot-path.hover {
    fill: #4682B4; /* A nice steel blue on hover */
    stroke: #2c597c;
    transform: scale(1.02);
    transition: transform 0.2s ease-in-out;
}

/* Styles for different availability statuses */
.lot-path.status-available {
    fill: #90EE90; /* Light green */
}

.lot-path.status-pending {
    fill: #FFD700; /* Gold */
}

.lot-path.status-sold {
    fill: #FF6347; /* Tomato red */
}

/* Tooltip/Info Box styling */
#hollows-sitemap-info-box {
    position: fixed;
    z-index: 1000;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    max-width: 300px;
    font-family: Arial, sans-serif;
    line-height: 1.5;
    pointer-events: none; /* Prevents the box from blocking mouse events on the map */
}

#hollows-sitemap-info-box h3 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    color: #333;
}

#hollows-sitemap-info-box p {
    margin: 0;
    font-size: 0.9em;
    color: #666;
}

#hollows-sitemap-info-box a {
    display: inline-block;
    margin-top: 10px;
    color: #0073aa;
    text-decoration: none;
    font-weight: bold;
}
