        body {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-color: #f0f2f5;
            /* Light grey background */
        }

        .login-container {
            display: flex;
            background-color: #ffffff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            max-width: 1000px;
            width: 90%;
            margin: 0 auto;
        }

        .bodycontainer {
            margin-top: 90px;
            min-height: 100vh;
            width: 100%;
        }

        .illustration-panel {
            flex: 1;
            background-color: #4CAF50;
            /* Example color, replace with your illustration background */
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 30px;
            background-color: #6a9ab6;
            /* Blue-green color from the image */
        }

        .illustration-panel img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }

        .login-panel {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 50px;
            text-align: center;
            background-color: #e0e6ea;
            /* Light grey background from the image */
        }

        .logo-text {
            font-size: 2.5rem;
            font-weight: bold;
            color: #2c3e50;
            /* Darker text for logo */
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .logo-text img {
            height: 80px;
            /* Adjust as needed */
            margin-right: 10px;
        }

        .portal-title {
            font-size: 1.1rem;
            color: #7f8c8d;
            /* Grey text for subtitle */
            margin-bottom: 25px;
        }

        .btn-custom {
            background-color: #5cb85c;
            /* Green color for the button */
            border-color: #5cb85c;
            color: white;
            padding: 10px 40px;
            border-radius: 30px;
            font-size: 1.1rem;
            transition: background-color 0.3s ease;
        }

        .btn-custom:hover {
            background-color: #4cae4c;
            border-color: #4cae4c;
            color: white;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .login-container {
                flex-direction: column;
            }

            .illustration-panel {
                min-height: 250px;
                /* Give some height to illustration on smaller screens */
            }

            .login-panel {
                padding: 30px;
            }
        }

        .footer {
            background-color: #f8f9fa;
            padding: 15px 0;
            border-top: 1px solid #e7e7e7;
            font-size: 0.9rem;
            color: #6c757d;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            text-align: center;
            padding-left: 10px;
            padding-right: 10px;
            z-index:10000;
        }

        .btn-hrnl {
            background-color: #5faabf;
            border-color: #5faabf;
            color: white;
        }

        .btn-hrnl:hover {
            background-color: #4a92a8;
            border-color: #4a92a8;
            color: white;
        }

        .insurerlogo {
            height: 20px;
            margin-top: -18px
        }

        .greeting {
            font-family: "Montserrat", sans-serif;
            margin-bottom: 20px;
            font-size: 1.2rem;
            font-weight: bold;
            color: #186c81;
        }

        .nav-link {
            font-family: "Montserrat", sans-serif;
        }

        .signoutbtn, .dashbtn {
            font-family: "Montserrat", sans-serif;
            font-weight: bold;
        }

        .bg-faded {
            background-color: #f5f5f5;
        }

        .border-left {
            border-left: 2px solid #ddd;
            padding-left: 15px;
        }

        .navbar-nav .nav-link.active {
            font-weight: bold;
            color: #005e74;
        }

        .navbar {
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .badge {
            font-size: 0.9rem;
        }

        .footerlink {
            text-decoration: none;
            font-size: 0.75rem;
            font-weight: bold;
            color: #aaa;
        }

        /*Timeline*/
        .timeline {
            position: relative;
            margin-left: 20px;
            padding-left: 20px;
            border-left: 3px solid #e0e0e0;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 30px;
            display: flex;
            align-items: flex-start;
            opacity: 0.4;
            transition: opacity 0.3s;
        }

        .timeline-item.active {
            opacity: 1;
        }

        .timeline-icon {
            position: absolute;
            left: -38px;
            top: 0;
            background: #fff;
            border: 3px solid #0092b3;
            color: #0092b3;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            z-index: 1;
            transition: background 0.3s, color 0.3s;
        }

        .timeline-right-icon {
            position: absolute;
            top: 0;
            background: #fff;
            border: 3px solid #0092b3;
            color: #0092b3;
            border-radius: 50%;
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            z-index: 1;
            transition: background 0.3s, color 0.3s;
        }

        .timeline-item:not(.active) .timeline-icon {
            border-color: #ccc;
            color: #ccc;
            background: #f8f9fa;
        }

        /* Completed status styling */
        .timeline-item.completed {
            opacity: 0.6;
        }

        .timeline-item.completed .timeline-icon {
            border-color: #28a745;
            color: #28a745;
            background: #d4edda;
        }

        /* Active/current status styling */
        .timeline-item.active {
            opacity: 1;
        }

        .timeline-item.active .timeline-icon {
            border-color: #0092b3;
            color: #0092b3;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(0, 146, 179, 0.2);
        }

        /* Upcoming status styling */
        .timeline-item.upcoming {
            opacity: 0.4;
        }

        .timeline-item.upcoming .timeline-icon {
            border-color: #6c757d;
            color: #6c757d;
            background: #f8f9fa;
        }

        .timeline-item.upcoming .timeline-content {
            background: #f1f3f4;
        }

        .timeline-content {
            margin-left: 20px;
            background: #f8f9fa;
            border-radius: 8px;
            padding: 16px 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
            min-width: 250px;
        }

        .timeline-right-content {
            margin-left: 70px;
            border-radius: 8px;
            padding: 16px 20px;
            min-width: 250px;
        }

        .timeline-content h6 {
            margin-bottom: 6px;
            font-weight: 600;
            font-size: 1.05rem;
        }

        .timeline-right-content h6 {
            margin-bottom: 6px;
            font-weight: 600;
            font-size: 1.45rem;
            color: #0092b3;
        }

        .timeline-content p {
            margin-bottom: 0;
            font-size: 0.97rem;
        }

        .speech-bubble {
            position: relative;
            background: #fff;
        }

        .speech-bubble::before {
            content: "";
            position: absolute;
            left: -20px;
            top: 15px;
            width: 0;
            height: 0;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            border-right: 20px solid #fff;
            /* Match card background */
            filter: drop-shadow(-2px 2px 2px rgba(0, 0, 0, 0.05));
        }

        .speech-bubble-msg {
            position: relative;
            background: #f8f9fa;
        }

        .speech-bubble-msg::before {
            content: "";
            position: absolute;
            left: -20px;
            top: 15px;
            width: 0;
            height: 0;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            border-right: 20px solid #f8f9fa;
            /* Match card background */
            filter: drop-shadow(-2px 2px 2px rgba(0, 0, 0, 0.05));
        }

        .text-right {
            text-align: right;
        }