.markerInfoPanel, .buildingInfoPanel{
    padding: 0 1em 2em 1em;
    margin: 0;
    width: 100%;
}

.info-heading{
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: #317fc7;
}

.info-text{
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    margin-bottom: 1.5em;
}

.info-panel-content {
    padding: 16px 20px 20px 20px;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    background: #f6f7f8;
}

.info-image-block {
    width: 100%;
    max-height: 180px;
    overflow: hidden;
    border-bottom: 2px solid #e2e8f0;
}

.info-full-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    cursor: pointer;
    transition: filter 0.3s ease;
}

.info-full-img:hover {
    filter: brightness(0.75);
}

.info-panel-header {
    margin-bottom: 16px;
}

.info-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
    background: rgba(28,116,233,0.1);
    color: #1c74e9;
    margin-bottom: 6px;
}

.info-title {
    font-size: 20px;
    font-weight: 600;
    margin: 4px 0 2px 0;
    color: #0f172a;
}

.info-subtitle {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.info-cards-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 14px;
}

.info-section-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.info-label-icon {
    font-size: 14px;
    color: #1c74e9;
    vertical-align: top;
    line-height: 1;
}

.info-card-text {
    font-size: 14px;
    color: #0f172a;
    margin: 0;
    line-height: 1.5;
}

.info-muted {
    color: #64748b;
    font-style: italic;
}

.info-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

#side-panel-content::-webkit-scrollbar {
    width: 6px;
}

#side-panel-content::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 6px;
}

.info-btn-primary {
    background: #1c74e9;
    color: white;
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
}

.info-btn-primary:hover {
    opacity: 0.9;
}

.info-btn {
    padding: 8px 22px;
    border-radius: 6px;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: opacity 0.2s ease;
}

.info-panel-footer {
    padding: 14px 20px;
    border-top: 1px solid #e2e8f0;
    margin-top: 16px;
}

.info-btn-group {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.info-btn {
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.info-btn-edit, .info-btn-add {
    background: #1c74e9;
    color: white;
    border: none;
}

.info-btn-edit:hover, .info-btn-add:hover {
    opacity: 0.85;
}

.info-btn-delete {
    color: #ef4444;
    border: 1px solid #fecaca;
    background: #fef2f2;
}

.info-btn-delete:hover {
    background: #fee2e2;
}

.info-btn-redraw {
    color: #1c74e9;
    border: 1px solid #93c5fd;
    background: #dbeafe;
    width: 100%;
}

.info-btn-redraw:hover {
    background: #bfdbfe;
    border-color: #60a5fa;
}

