.login-body{
            min-height: 100vh;
            background: linear-gradient(135deg, #254e8c, #2e6fbf);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .login-container {
            width: 100%;
            max-width: 400px;
            background: #ffffff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .login-container h2 {
            text-align: center;
            margin-bottom: 25px;
            color: #2e6fbf;
            font-weight: 600;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            margin-bottom: 6px;
            font-size: 14px;
            color: #555;
        }

        .form-group input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 14px;
            transition: 0.3s;
        }

        .form-group input:focus {
            border-color: #2e6fbf;
            outline: none;
        }

        .login-btn {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 6px;
            background: #2e6fbf;
            color: #fff;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: 0.3s;
        }

        .login-btn:hover {
            background: #254e8c;
        }

        .extra-links {
            margin-top: 15px;
            text-align: center;
            font-size: 13px;
        }

        .extra-links a {
            color: #2e6fbf;
            text-decoration: none;
        }

        .extra-links a:hover {
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 480px) {
            .login-container {
                margin: 15px;
                padding: 25px 20px;
            }
        }
        .multi-line-cell {
            position: relative;
            cursor: pointer;
        }

        .tooltip-box {
            position: fixed;
            max-width: 260px;
            background: #fff;
            color: #000;
            padding: 8px 10px;
            border-radius: 4px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
            z-index: 99999;
            font-size: 13px;
            line-height: 1.4;
            word-wrap: break-word;
            overflow-wrap: anywhere;
        }

        /* Remove sorting arrows/icons */
table thead th.sort::before,
table thead th.sort::after {
    display: none !important;
    content: none !important;
}

/* Remove extra padding added for sorting icons */
table thead th.sort {
    padding-right: 12px !important;
}






