* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
}

#street-view {
    height: 100%;
    width: 100%;
}

#footer {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

#footer a {
    color: #333;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    display: flex;
    align-items: center;
}

#footer .mobile-logo {
    display: none;
    width: 30px;
    height: auto;
}

#footer a:hover {
    color: #000;
    text-decoration: underline;
}

#boundary-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    transition: opacity 0.3s ease-in-out;
}

#boundary-alert.hidden {
    opacity: 0;
    pointer-events: none;
}

#boundary-alert p {
    margin: 8px 0;
    font-size: 16px;
    color: #333;
}

#boundary-alert a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

#boundary-alert a:hover {
    text-decoration: underline;
}

#fast-travel {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

#location-select {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 20px;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    outline: none;
    min-width: 200px;
}

#location-select:hover {
    background-color: rgba(255, 255, 255, 1);
}

#location-select option {
    background-color: white;
    color: #333;
    padding: 8px;
}

/* Mobile styles */
@media (max-width: 768px) {
    #footer {
        background: none;
        box-shadow: none;
        padding: 0;
    }

    #footer .desktop-text {
        display: none;
    }

    #footer .mobile-logo {
        display: block;
        width: 40px;
        height: auto;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    }

    #location-select {
        min-width: 150px;
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* Price label styling */
.gm-style .marker-label {
    background-color: rgba(255, 255, 255, 0.95) !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    margin-top: 8px !important;
    text-shadow: none !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
    z-index: 1000 !important;
    white-space: nowrap !important;
    position: relative !important;
    top: 20px !important;
    color: #333333 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

/* Sold property label styling */
.gm-style .marker-label.sold {
    background-color: rgba(0, 0, 0, 0.8) !important;
    color: #FFFFFF !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    z-index: 1000 !important;
    user-select: none !important;
}

.gm-style .marker-label.sold:hover {
    background-color: rgba(0, 0, 0, 0.9) !important;
    transform: scale(1.05) !important;
} 