body {
    margin: 0;
    padding: 0;
    font-family: 'Be Vietnam Pro', sans-serif;
    color: rgb(86, 100, 118);
}

#map {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    transition: height 0.3s ease;
}

.info-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    max-height: 60vh;
    overflow-y: auto;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.info-panel.active {
    transform: translateY(0);
}

.info-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background-color: white;
}

.info-panel-header > * {
    display: flex;
    align-items: center;
}

.info-panel-header h2 {
    margin: 0;
    color: rgb(27, 174, 112);
    font-size: 1.2rem;
}

.close-button {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: rgb(86, 100, 118);
    padding: 5px;
}

.info-panel-content {
    padding: 15px;
}

.property-item {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    &:last-child {
        margin-bottom: 0;
    }
}

.property-icon {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: rgb(27, 174, 112);
}

.property-text {
    flex: 1;
}

.property-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.property-value {
    margin: 0;
}

.links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.links-list a {
    color: rgb(27, 174, 112);
    text-decoration: none;
}

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

.active-flag {
    display: inline-block;
    background-color: rgb(253, 133, 73);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-left: 10px;
}

.link-org-flag {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .info-panel {
        max-height: 70vh;
    }
    
    .info-panel-header h2 {
        font-size: 1.1rem;
    }
    
    .property-item {
        margin-bottom: 7px;
    }
}