     /*
        ============================================================
        HAMANDA EPPS WORKER DASHBOARD

        Styled to match the simple visual language of:
        Hamanda Enterprise Printer Service

        Main site:
        https://hamandaepps.pages.dev
        ============================================================
        */

h1 {
     border: 4px black;
     border-radius: 15px; 
}




        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background: #ffffff;
            color: #000000;
            font-family: Arial, Helvetica, sans-serif;
             background-color: #80c492;
        }

        a {
            color: inherit;
        }

        button,
        input {
            font-family: inherit;
        }

        /*
        ============================================================
        MAIN PAGE
        ============================================================
        */

        .page {
            max-width: 850px;
            margin: 0 auto;
            padding: 35px 25px 60px;
        }

        /*
        ============================================================
        HEADER
        ============================================================
        */

        .brand {
            margin-bottom: 5px;
        }

        .brand h1 {
            margin: 0;
            font-size: 32px;
            font-weight: 700;
        }

        .tagline {
            margin: 5px 0 20px;
            font-size: 19px;
            font-weight: 700;
        }

        .top-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 20px;
        }

        .top-links a {
            text-decoration: underline;
            cursor: pointer;
        }

        .welcome {
            margin: 15px 0;
        }

        hr {
            border: 0;
            border-top: 1px solid #000;
            margin: 20px 0;
        }

        /*
        ============================================================
        LOGIN
        ============================================================
        */

        #loginSection {
            margin-top: 30px;
        }

        #loginSection h2 {
            font-size: 24px;
            margin-bottom: 15px;
        }

        form {
            margin-bottom: 25px;
        }

        form label {
            display: block;
            margin-bottom: 5px;
        }

        form input {
            display: block;
            width: 100%;
            max-width: 400px;

            padding: 8px;

            margin-bottom: 12px;

            border: 1px solid #777;
            border-radius: 2px;

            background: white;
            color: black;
        }

        form input:focus {
            outline: 1px solid #000;
        }

        button {
            border: 1px solid #000;
            background: #000;
            color: #fff;

            padding: 8px 14px;

            cursor: pointer;
            border-radius: 2px;
        }

        button:hover {
            background: #333;
        }

        button:disabled {
            opacity: .6;
            cursor: wait;
        }

        .error {
            color: #b00000;
            margin: 10px 0;
        }

        /*
        ============================================================
        WORKER DASHBOARD
        ============================================================
        */

        #dashboard {
            margin-top: 25px;
        }

        .worker-heading h2 {
            margin-bottom: 5px;
        }

        .worker-heading p {
            margin-top: 5px;
        }

        /*
        ============================================================
        STATUS
        ============================================================
        */

        .status-section {
            margin-top: 30px;
        }

        .status-section h3 {
            margin-bottom: 10px;
        }

        .status {
            font-size: 22px;
            font-weight: 700;
        }

        .status-description {
            margin-top: 8px;
        }

        /*
        ============================================================
        STATUS COLORS
        ============================================================
        */

        .perfect {
            color: #008000;
        }

        .good {
            color: #008000;
        }

        .okay {
            color: #9a7300;
        }

        .missed {
            color: #cc6600;
        }

        .missing {
            color: #cc0000;
        }

        .almost-fired {
            color: #990000;
        }

        /*
        ============================================================
        QUICK LINKS
        ============================================================
        */

        .quick-links {
            margin-top: 30px;
        }

        .quick-links h3 {
            margin-bottom: 10px;
        }

        .quick-links a {
            display: block;
            margin: 10px 0;
        }

        /*
        ============================================================
        WORKER INFORMATION
        ============================================================
        */

        .worker-info {
            margin-top: 30px;
        }

        .worker-info p {
            margin: 8px 0;
        }

        /*
        ============================================================
        LOGOUT
        ============================================================
        */

        #logoutButton {
            margin-top: 25px;
        }

        /*
        ============================================================
        FOOTER
        ============================================================
        */

        footer {
            margin-top: 50px;
        }

        /*
        ============================================================
        MOBILE
        ============================================================
        */

        @media (max-width: 600px) {

            .page {
                padding: 25px 18px 50px;
            }

            .brand h1 {
                font-size: 27px;
            }

            .tagline {
                font-size: 17px;
            }

            .top-links {
                gap: 10px;
            }

            form input {
                max-width: 100%;
            }
        }
