

         /* ================================================================= */
        /* CSS STYLE: Table    */
        /* ================================================================= */

        table {
            border-collapse: collapse;
            /* This is crucial to avoid double borders */
            width: 100%;
            font-family: sans-serif;
            font-size: 0.8rem;
            letter-spacing: 1px;
        }

        caption {
            caption-side: bottom;
            padding: 10px;
            font-weight: bold;
        }

        th {
            padding: 8px 10px;
            text-align: left;
        }

        td {
            border-top: 1px solid rgb(160 160 160);
            border-bottom: 1px solid rgb(160 160 160);
            padding: 8px 10px;
            text-align: left;
        }

        /* ================================================================= */
        /* CSS STYLE: Link As Blue Button: Open Book, Open Topic In book     */
        /* ================================================================= */

        .link_as_blue_button {
            /* Blue background */
            background-color: royalblue;
            /* Remove default border */
            border: none;
            /* White text */
            color: white;
            /* Add padding for size */
            padding: 15px 32px;
            /* Center the text */
            text-align: center;
            /* Remove underline */
            text-decoration: none;
            /* Allows for margin/padding adjustments */
            display: inline-block;
            /* Set font size */
            font-size: 16px;
            /* Add some margin */
            margin: 4px 2px;
            /* Change cursor to pointer on hover */
            cursor: pointer;
            /* Round the corners */
            border-radius: 8px;
        }


        /* ================================================================= */
        /* CSS STYLE: Link As Green Button: Watch Workshop Companion Videos  */
        /* ================================================================= */

        .link_as_green_button {

            /* Green background */
            background-color: #4CAF50;
            /* Remove default border */
            border: none;
            /* White text */
            color: white;
            /* Add padding for size */
            padding: 15px 32px;
            /* Center the text */
            text-align: center;
            /* Remove underline */
            text-decoration: none;
            /* Allows for margin/padding adjustments */
            display: inline-block;
            /* Set font size */
            font-size: 16px;
            /* Add some margin */
            margin: 4px 2px;
            /* Change cursor to pointer on hover */
            cursor: pointer;
            /* Round the corners */
            border-radius: 8px;
        }



        /* ================================================================= */
        /* CSS STYLE: Link As Orange Button: Equipment                       */
        /* ================================================================= */

        .link_as_orange_button {
            /* Green background */
            background-color: orange;
            /* Remove default border */
            border: none;
            /* White text */
            color: white;
            /* Add padding for size */
            padding: 15px 32px;
            /* Center the text */
            text-align: center;
            /* Remove underline */
            text-decoration: none;
            /* Allows for margin/padding adjustments */
            display: inline-block;
            /* Set font size */
            font-size: 16px;
            /* Add some margin */
            margin: 4px 2px;
            /* Change cursor to pointer on hover */
            cursor: pointer;
            /* Round the corners */
            border-radius: 8px;
        }

        /* ================================================================= */
        /* CSS STYLE: Link As Register Now                                   */
        /* ================================================================= */

        .link_as_register_now {

            /* Green background */
            background-color: #4CAF50;
            /* Remove default border */
            border: none;
            /* White text */
            color: white;
            /* Add padding for size */
            padding: 15px 32px;
            /* Center the text */
            text-align: center;
            /* Remove underline */
            text-decoration: none;
            /* Allows for margin/padding adjustments */
            display: inline-block;
            /* Set font size */
            font-size: 16px;
            /* Add some margin */
            margin: 4px 2px;
            /* Change cursor to pointer on hover */
            cursor: pointer;
            /* Round the corners */
            border-radius: 8px;
        }
