<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:padding="24dp"
    android:gravity="center"
    android:background="#F4F6F8">

    <TextView
        android:id="@+id/tvTitle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Shipyard Asset Scanner"
        android:textSize="22sp"
        android:textStyle="bold"
        android:textColor="#0B3C5D"
        android:layout_marginBottom="24dp" />

    <Button
        android:id="@+id/btnScan"
        android:layout_width="match_parent"
        android:layout_height="60dp"
        android:text="Scan Tool QR Code"
        android:textSize="18sp"
        android:textColor="#FFFFFF"
        android:backgroundTint="#0B3C5D"
        android:layout_marginBottom="24dp" />

    <TextView
        android:id="@+id/tvStatus"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Ready to scan equipment..."
        android:textSize="14sp"
        android:textColor="#555555"
        android:gravity="center" />

</LinearLayout>
