/* Set the height and width of the map */
#map {
    height: 100vh;
    width: 100%;
}

/* Floating Sidebar Styles */
.sidebar {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 250px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    z-index: 1000;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.sidebar-header h3 {
    margin: 0;
    color: #00897b;
    font-size: 1.2em;
}

.auth-links {
    display: flex;
    gap: 10px;
}

.auth-links a {
    color: #00897b;
    text-decoration: none;
    font-size: 14px;
}

.auth-links a:hover {
    text-decoration: underline;
}

.sidebar hr {
    margin: 15px 0;
    border: none;
    border-top: 1px solid #eee;
}

.sidebar h3 {
    margin-top: 0;
    font-size: 1.2em;
    text-align: center;
}

.sidebar button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    font-size: 1em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.sidebar button#draw-polygon {
    background-color: #4CAF50;
    color: white;
}

.sidebar button#buy {
    background-color: #008CBA;
    color: white;
}

.sidebar .price {
    font-size: 1.1em;
    text-align: center;
    margin-top: 10px;
}

 