<?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="16dp">

    <TextView
        android:id="@+id/statusText"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Status" />

    <TextView
        android:id="@+id/syncStatusText"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Sync Status"
        android:textSize="12sp"
        android:textColor="#666666"
        android:layout_marginBottom="8dp" />

    <Button
        android:id="@+id/clockInBtn"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Clock In" />

    <Button
        android:id="@+id/clockOutBtn"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Clock Out" />

    <Button
        android:id="@+id/viewHoursBtn"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="View Hours" />

    <Button
        android:id="@+id/registerFaceBtn"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Register Face" />

    <Button
        android:id="@+id/payslipsBtn"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="My Payslips" />

    <Button
        android:id="@+id/leaveBtn"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Leave Management" />

    <Button
        android:id="@+id/logoutBtn"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Logout" />

    <ListView
        android:id="@+id/historyList"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1" />
</LinearLayout>
