<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/dashboard_bg_start"
    android:fitsSystemWindows="true"
    android:orientation="vertical">

    <!-- Browser Header -->
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="56dp"
        android:background="#1A1F2B"
        android:paddingHorizontal="16dp">

        <TextView
            android:id="@+id/text_domain"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:text="healthcare.ctrmv.com"
            android:textColor="#FFFFFF"
            android:textSize="18sp"
            android:textStyle="bold" />

        <ImageButton
            android:id="@+id/btn_reload_header"
            android:layout_width="48dp"
            android:layout_height="48dp"
            android:layout_alignParentEnd="true"
            android:layout_centerVertical="true"
            android:background="?attr/selectableItemBackgroundBorderless"
            android:src="@android:drawable/stat_notify_sync"
            android:contentDescription="Reload"
            android:padding="8dp"
            app:tint="#FFFFFF" />
    </RelativeLayout>

    <!-- Thick Visible Progress Bar -->
    <ProgressBar
        android:id="@+id/progress_loading"
        style="?android:attr/progressBarStyleHorizontal"
        android:layout_width="match_parent"
        android:layout_height="4dp"
        android:progressDrawable="@drawable/progress_orange"
        android:indeterminate="false"
        android:max="100"
        android:progress="0"
        android:visibility="visible" />

    <WebView
        android:id="@+id/webview_support"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</LinearLayout>