body {
        font-family: 'Poppins', sans-serif;
        background-color: #2c2f33; /* Dark theme background */
        color: #ffffff; /* Set all text color to white */
        padding: 20px;
        margin: 0;
    }

    h3 {
        color: #ffffff; /* White text */
        text-decoration: underline;
        background: linear-gradient(135deg, #44bd32, #273c75); /* Gradient background */
        padding: 10px 15px;
        border-radius: 5px;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .table-responsive {
        background-color: #3d3d3d; /* Darker background */
        border-radius: 8px;
        padding: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Shadow for depth */
        margin-bottom: 30px;
        overflow-x: auto; /* Enable horizontal scrolling for small screens */
    }

    .table {
        background-color: #2f3640; /* Dark table background */
        border-radius: 8px;
        overflow: hidden;
        width: 100%;
        transition: all 0.3s ease; /* Smooth hover effect */
    }

    .table th,
    .table td {
        padding: 15px 10px;
        text-align: center;
        vertical-align: middle;
        color: #ffffff; /* Set all table cell text color to white */
    }

    .table th {
        background-color: #353b48; /* Slightly lighter than table body */
        font-weight: 600;
        text-transform: uppercase;
    }

    .table-striped tbody tr:nth-of-type(odd) td {
        background-color: #2d3436; /* Dark row color for odd rows */
        color: #ffffff; /* Set text color for odd rows */
    }

    .table-striped tbody tr:nth-of-type(even) td {
        background-color: #3b3b3b; /* Slightly lighter for even rows */
        color: #ffffff; /* Set text color for even rows */
    }

    .table-hover tbody tr:hover {
        background-color: #4cd137; /* Highlight row on hover */
        color: #ffffff; /* Ensure white text on hover */
    }

    .table-bordered th,
    .table-bordered td {
        border: 1px solid #dfe6e9; /* Light border to define cells */
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button {
        padding: 0.5em 1em;
        margin-left: 2px;
        background-color: #44bd32; /* Green accent */
        color: #ffffff !important; /* Set pagination button text color to white */
        border: none;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
        background-color: #273c75; /* Darker on hover */
    }

    /* Header styles for better hierarchy */
    th {
        font-size: 14px;
        letter-spacing: 1px;
        color: #ffffff; /* Set header text color to white */
    }

    td {
        font-size: 13px;
        padding: 12px;
        color: #ffffff; /* Set all cell text color to white */
    }

    /* Table hover effects */
    .table-hover tbody tr {
        cursor: pointer;
    }

    .table-hover tbody tr:hover td {
        background-color: #44bd32; /* Ensure background color on hover */
        transition: background-color 0.3s ease;
    }

    /* Responsive and typography improvements */
    @media (max-width: 768px) {
        h3 {
            font-size: 18px;
        }

        td,u
        th {
            font-size: 12px;
        }
    }

    .modal-content {
    background-color: #343a40; /* Dark background */
    color: white; /* Text color */
    border-radius: 10px; /* Rounded corners */
}

.modal-header {
    background: linear-gradient(135deg, #44bd32, #273c75); /* Gradient background */
    border-bottom: 1px solid #495057; /* Subtle border for separation */
}

.modal-title {
    font-weight: 600; /* Bold title */
}

.close {
    background : linear-gradient(135deg, #44bd32, #273c75); /* Gradient background */
    color: white; /* Close button color */
}

    /* Smooth animations for page and table elements */
    .fadeIn {
        animation: fadeIn 1s ease-in-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }