
        body {
            font-family: 'Arial', sans-serif;
            background-color: #f8f9fa;
            color: #333;
        }
        
        /* Navbar */
        .navbar {
            background-color: #0056b3;
        }

        .navbar-brand,
        .nav-link {
            color: #ffffff !important;
        }

        .nav-link:hover {
            color: #d4d4d4 !important;
        }

        /* Header Styling */
        .header {
            background-color: #0056b3;
            color: white;
            padding: 40px 0;
        }

        .header h2 {
            font-size: 38px;
            font-weight: bold;
        }

        .header h5 {
            color: #d1ecf1;
        }

        /* Profile Image */
        .profile-img {
            width: 200px;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .profile-section {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Section Titles */
        .section-title {
            color: #0056b3;
            font-size: 28px;
            margin-bottom: 20px;
            font-weight: bold;
        }

        /* Pagination Styling */
        .pagination {
            justify-content: center;
        }

        /* Card and Hover Effects */
        .card {
            border: none;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out;
        }

        .card:hover {
            transform: translateY(-10px);
        }

        .list-group-item:hover {
            background-color: #e2e6ea;
        }

        .btn-primary {
            background-color: #0056b3;
            border: none;
        }

        .btn-primary:hover {
            background-color: #003d80;
        }
/* Centered Authentication Container */
.auth-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f9fa; /* Light background */
}

/* Login Card */
.auth-card {
    width: 100%;
    max-width: 400px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Form Styling */
.auth-content .form-group {
    margin-bottom: 15px;
}

.auth-content .form-control {
    height: 45px;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px;
}

.auth-content .form-control:focus {
    border-color: #007bff;
    box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.3);
}

/* Button Styling */
.btn-primary {
    background: #007bff;
    border: none;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #0056b3;
}

/* Forgot Password */
.forgot-password {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password:hover {
    text-decoration: underline;
}
