.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;
}

/* Modern UI Enhancements - Soft Glass Theme */
:root {
    --primary-main: #4361ee;
    --primary-light: #4895ef;
    --primary-gradient: linear-gradient(135deg, #4361ee 0%, #4895ef 100%);
    --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --border-color: #e2e8f0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #334155;
    background-color: #f1f5f9;
}

.premium-card {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    margin-bottom: 2rem;
    overflow: hidden;
}

.card-header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 1.5rem;
}

.premium-table thead th {
    background-color: #f8fafc !important;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: #64748b;
    padding: 1rem 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.premium-table tbody td {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.status-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 8px;
    display: inline-block;
}

.status-active {
    background-color: #dcfce7;
    color: #166534;
}

.status-inactive {
    background-color: #fee2e2;
    color: #991b1b;
}

.btn-premium {
    background: var(--primary-gradient) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 0.6rem 1.5rem !important; /* Standardized padding */
    font-size: 0.9rem !important; /* Standardized font size */
    border-radius: 8px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 6px -1px rgba(67, 97, 238, 0.2) !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-premium:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(67, 97, 238, 0.3) !important;
    opacity: 0.95;
}

/* Back/Cancel buttons should match in size */
.btn-dark, .btn-light {
    padding: 0.6rem 1.5rem !important;
    font-size: 0.9rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* View Layout */
.view-group {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    margin-bottom: 1.25rem;
}

.view-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.view-value {
    font-size: 0.95rem;
    color: #1e293b;
    font-weight: 500;
}

/* Form Styles */
.form-label {
    font-weight: 600;
    color: #475569;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.form-control {
    padding: 0.6rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.form-control:focus {
    border-color: var(--primary-main);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}






