
        /* Hide BA submenu by default */
        .ba-submenu {
            display: none;
            position: absolute;
            top: 0;
            left: 100%;
            /* Opens to the right */
            background: #fff;
            padding: 0;
            margin: 0;
            list-style: none;
            z-index: 999;
        }

        /* Show submenu on hover */
        .ba-menu:hover>.ba-submenu {
            display: block;
        }

        /* Ensure main submenu li is positioned properly */
        .ba-menu {
            position: relative;
        }

        /* Side Buttons Styling */
        .side-buttons {
            position: fixed;
            right: 0;
            top: 62%;
            transform: translateY(-50%);
            z-index: 999999998;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .side-btn {
            background-color: #f8941f;
            /* Orange */
            color: #000;
            padding: 20px 10px;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            cursor: pointer;
            font-weight: 700;
            border-radius: 10px 0 0 10px;
            transition: all 0.3s ease;
            box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
            text-transform: uppercase;
            font-size: 13px;
            letter-spacing: 1px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-right: none;
        }

        .side-btn:hover {
            padding-right: 25px;
            background-color: #ffb800;
        }

        .yellow-btn {
            background-color: #f8941f;
            color: #000;
        }

        .red-btn {
            background-color: #dc3545;
            color: #fff;
        }

        /* Side Form Panel Styling */
        #sideFormPanel {
            position: fixed;
            right: -450px;
            top: 0;
            width: 450px;
            height: 100vh;
            max-height: 100vh;
            background: #077f79;
            /* Dark Blue from screenshot */
            color: #fff;
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
            z-index: 999999999;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        #sideFormPanel.active {
            right: 0;
        }

        .form-header {
            flex-shrink: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 20px;
            background: rgba(0, 0, 0, 0.2);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .form-header h3 {
            color: #fff;
            margin: 0;
            font-size: 22px;
            font-weight: 600;
        }

        .close-btn {
            cursor: pointer;
            font-size: 30px;
            color: #fff;
            line-height: 1;
            transition: transform 0.3s;
        }

        .close-btn:hover {
            transform: rotate(90deg);
        }

        .form-tabs {
            flex-shrink: 0;
            display: flex;
            padding: 15px 20px 0;
            
            gap: 10px;
        }

        .tab-btn {
            flex: 1;
            padding: 12px;
            border: none;
            background: transparent;
            color: #fff;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            border-radius: 5px 5px 0 0;
            transition: 0.3s;
            text-align: center;
        }

        .tab-btn.active {
            background: #f8941f;
         
        }

        .form-body {
            padding: 20px;
            flex: 1;
            background: #077f79;
            overflow-y: auto;
        }

        /* Form Inputs Styling */
        .side-form-input {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 5px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            background: #fff;
            color: #000;
            font-size: 15px;
        }

        .side-form-input:focus {
            border-color: #f8941f;
            outline: none;
        }

        .error-msg {
            color: #ff4d4d;
            font-size: 12px;
            margin-bottom: 12px;
            display: none;
            font-weight: 500;
        }

        .login-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            margin-bottom: 20px;
            color: #fff;
        }

        .login-options a {
            color: #fff;
            text-decoration: none;
        }

        .login-options a:hover {
            color: #f8941f;
        }

        .apply-btn {
            width: 100%;
            padding: 15px;
            background: #f8941f;
            color: #000;
            border: none;
            border-radius: 4px;
            font-weight: 700;
            cursor: pointer;
            text-transform: uppercase;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            transition: 0.3s;
        }

        .apply-btn:hover {
            background: #ffb800;
        }

        .loginForm-text {
            text-align: center;
            margin-top: 15px;
            font-size: 14px;
            color: #fff;
        }

        .loginForm-text a {
            color: #fff;
            text-decoration: underline;
        }

        .loginForm-text a:hover {
            color: #f8941f;
        }

        .check-box-input {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
        }

        .check-box-input input {
            width: 16px;
            height: 16px;
        }

        /* Responsive adjustments */
        @media only screen and (max-width: 500px) {
            #sideFormPanel {
                width: 100%;
                right: -100%;
            }
        }
    