/* Floor Plan Form Popup Styles */
.floorplan-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floorplan-popup-content {
    background: white;
    border-radius: 8px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.floorplan-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.floorplan-popup-header h3 {
    margin: 0;
    font-size: 1.5em;
    color: #333;
}

.floorplan-popup-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.floorplan-popup-close:hover {
    background-color: #f0f0f0;
    color: #333;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .floorplan-popup-content {
        padding: 20px;
        margin: 20px;
    }
    
    .floorplan-popup-header h3 {
        font-size: 1.3em;
    }
} 