<?xml version="1.0" encoding="UTF-8"?>

<?import javafx.scene.control.Button?>
<?import javafx.scene.control.ChoiceBox?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.VBox?>

<VBox minHeight="-Infinity" minWidth="-Infinity" prefHeight="60.0" prefWidth="800.0" xmlns="http://javafx.com/javafx/17" xmlns:fx="http://javafx.com/fxml/1">
   <children>
      <HBox alignment="CENTER_RIGHT" maxHeight="-Infinity" prefHeight="25.0" prefWidth="600.0">
         <children>
            <HBox maxHeight="-Infinity" minWidth="-Infinity" prefHeight="26.0" prefWidth="200.0" HBox.hgrow="ALWAYS">
               <children>
                  <Label fx:id="loggedIn" prefHeight="26.0" prefWidth="242.0" text="Logged in: " />
                  <Label fx:id="viewing" layoutX="10.0" layoutY="10.0" prefHeight="26.0" prefWidth="58.0" text="Viewing: " />
                  <ChoiceBox fx:id="selectedEmployee" prefWidth="150.0" />
               </children>
            </HBox>
            <Button alignment="CENTER" contentDisplay="CENTER" mnemonicParsing="false" onMouseClicked="#logoutClicked" prefHeight="26.0" prefWidth="158.0" text="Logout" />
         </children>
      </HBox>
      <HBox alignment="CENTER" minWidth="200.0" prefHeight="35.0" prefWidth="800.0">
         <children>
            <Button alignment="CENTER" contentDisplay="CENTER" maxHeight="-Infinity" minHeight="-Infinity" minWidth="50.0" mnemonicParsing="false" onMouseClicked="#viewSchedule" prefHeight="35.0" prefWidth="200.0" text="Schedule" />
            <Button contentDisplay="CENTER" maxHeight="-Infinity" minHeight="-Infinity" minWidth="50.0" mnemonicParsing="false" onMouseClicked="#viewPayroll" prefHeight="35.0" prefWidth="200.0" text="Payroll" />
            <Button contentDisplay="CENTER" maxHeight="-Infinity" minHeight="-Infinity" minWidth="50.0" mnemonicParsing="false" onMouseClicked="#viewStaff" prefHeight="35.0" prefWidth="200.0" text="Staff" HBox.hgrow="ALWAYS" />
            <Button alignment="CENTER" contentDisplay="CENTER" maxHeight="-Infinity" minHeight="-Infinity" minWidth="50.0" mnemonicParsing="false" onMouseClicked="#viewRequests" prefHeight="35.0" prefWidth="200.0" text="Requests" />
         </children>
      </HBox>
   </children>
</VBox>