        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Google Sans", Roboto, Arial, Helvetica, sans-serif;
            padding: 0px;
            background-color: #f4f4f4;
        }

	a {
	    text-decoration: none; /* Removes the underline */
	    color: black; /* Default color for the link */
	}

	a:hover {
	    text-decoration: underline; /* Adds the underline */
	    color: purple; /* Color when the link is hovered */
	}

        .navbar {
	    width: 100%;
	    padding-bottom: 0px;
            background-color: #333;
            overflow: hidden;
            position: relative;
        }

        .navbar a {
            float: left;
            display: block;
            color: white;
            text-align: center;
            padding: 14px 20px;
            text-decoration: none;
        }

        .navbar a:hover {
            background-color: #ddd;
            color: black;
        }

        .navbar a.active {
            background-color: #4CAF50;
            color: white;
        }

        .navbar .icon {
            display: none;
        }

        /* Profile link styles - right aligned */
        .navbar a.profile-link {
            float: right;
            cursor: pointer;
        }

        /* Submenu container */
        .profile-submenu {
            display: none;
            position: absolute;
            right: 0;
            background-color: #333;
            min-width: 160px;
            z-index: 1;
        }

        .profile-submenu a {
            color: white;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            text-align: left;
        }

        .profile-submenu a:hover {
            background-color: #ddd;
            color: black;
        }

        /* Show the submenu when clicked */
        .navbar a.profile-link.active + .profile-submenu {
            display: block;
        }

        @media screen and (max-width: 600px) {
            .navbar a {
                float: none;
                display: none;
                text-align: left;
            }

            .navbar a.icon {
                float: right;
                display: block;
            }

            .navbar.responsive {
                position: relative;
            }

            .navbar.responsive a.icon {
                position: absolute;
                right: 0;
                top: 0;
            }

            .navbar.responsive a {
                display: block;
                text-align: left;
            }

            .navbar.responsive a.profile-link {
                float: none;
            }

            .navbar.responsive .profile-submenu {
                position: static;
            }
        }

        /* Existing form styles */
        form {
            max-width: 600px;
            margin: 0 auto;
            background-color: #fff;
            padding: 10px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        label {
            display: block;
            margin-bottom: 0px;
        }

        input[type="text"],
        input[type="password"],
        input[type="number"],
        input[type="email"],
        input[type="date"],
        select,
        input[type="submit"],
        button {
            width: 96%;
            padding: 6px;
            margin-bottom: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        button {
            cursor: pointer;
            background-color: #28a745;
            color: #fff;
            border: none;
        }

        input[type="radio"], input[type="checkbox"] {
            margin-right: 5px;
        }

        .radio-group, .checkbox-group {
            margin-bottom: 10px;
        }

        .radio-inline, .checkbox-inline {
            margin-right: 5px;
	    display: flex;
	    align-items: center;
	    margin-bottom: 2px; /* Minimal space between radio buttons */
        }

        .tooltip {
            position: relative;
            display: inline-block;
            cursor: pointer;
        }

        .tooltip .tooltiptext {
            visibility: hidden;
            width: 350px;
            background-color: black;
            color: #fff;
            text-align: left;
            border-radius: 5px;
            padding: 5px;
            position: absolute;
            z-index: 1;
            bottom: 125%; /* Position above the link */
            left: 50%;
            margin-left: -60px;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .tooltip:hover .tooltiptext {
            visibility: visible;
            opacity: 1;
        }
        
	@media (max-width: 600px) {
            form {
                padding: 10px;
            }
        }

        .btn-success {
            background-color: #add8e6;
            color: #222;
            cursor: pointer;
            font-size: 1.2em;
            padding: 15px;
            border-radius: 15px;
            border: none;
        }

        .btn-success:hover {
            background-color: #90c1d9;
        }

        #pleaseWait {
            display: none;
            font-size: 14px;
            color: #008000;
        }

        footer {
            #position: fixed;
            bottom: 30px;
            height: 30px;
            width: 100%;
            font-family: font-family: "Google Sans", Roboto, Arial, Helvetica, sans-serif;
            font-size: 12px;
            text-align: center;
        }

        footer a {
            text-decoration: none; /* Removes the underline */
            color: black; /* Default color for the link */
            margin: 0 15px;
        }

	footer a:hover {
	    text-decoration: underline; /* Adds the underline */
	    color: purple; /* Color when the link is hovered */
        }


        footer p {
            margin: 0;
        }

	.no-style-table {
          border-collapse: collapse;
          width: auto;
          border: none;
          padding: 0;
          margin: 0;
	  background-color: #ffffff;
        }

        .no-style-table th, 
        .no-style-table td {
          border: none;
          padding: 4px;
          margin: 0;
	  background-color: #ffffff;
	}

        table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }
        table, th, td {
            border: 1px solid #ccc;
        }
        th, td {
            padding: 10px;
            text-align: left;
	    font-size: 13px;
        }
	th {
            background-color: #505050; /* Background color for the header row */
	    color: white;              /* Text color for the header row */
	}
        tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        tr:nth-child(odd) {
            background-color: #e9e9e9;
        }

        .fa-button {
            width: 60px; /* Set the width here */
	    padding: 4px;
            font-size: 12px;
	    background-color: #4CAF50; /* Optional styling */
            color: white;
	    border: none;
	    border-radius: 5px;
	    cursor: pointer;
	    display: inline-flex;
	    align-items: center; /* Centers the icon and text vertically */
	    justify-content: center; /* Centers the icon and text horizontally */
	}
