    /* Adjust the border for the select2 element */
    .select2-container--default .select2-selection--single {
        border: 1px solid #e6eaed; /* Adjust thickness (1px) and color (#ced4da is light gray) */
        height: 54px; /* Optional: Adjust height if needed */
        display: flex;
        align-items: center; /* Vertically align the text */
        border-radius: 8px; /* Optional: Add border radius if needed */

    }

    /* Optional: Change border color when focused */
    .select2-container--default .select2-selection--single:focus,
    .select2-container--default .select2-selection--single:hover {
       

    }



     /* Custom pagination container */
    .custom-pagination {
        display: flex;
        justify-content: center;
        list-style: none;
        padding: 0;
        flex-wrap: wrap; /* Make it wrap in case of small screens */
    }

    /* Pagination items */
    .custom-pagination li {
        margin: 5px;
    }

    .custom-pagination .btn {
        padding: 10px 15px;
        border-radius: 5px;
        font-size: 14px;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .custom-pagination .active .btn {
        background-color: #333;
        color: white;
        font-weight: bold;
    }

    .custom-pagination .disabled .btn {
        background-color: #d6d6d6;
        color: #fff;
        cursor: not-allowed;
    }

    .custom-pagination .btn-light {
        background-color: #f8f9fa;
        color: #333;
    }

    .custom-pagination .bg-night-dark {
        background-color: #212529;
        color: #fff;
    }

    .custom-pagination .bg-night-light {
        background-color: #343a40;
        color: #fff;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .custom-pagination .btn {
            padding: 8px 12px;
            font-size: 12px;
        }
    }

    @media (max-width: 576px) {
        .custom-pagination .btn {
            padding: 6px 10px;
            font-size: 10px;
        }

        .custom-pagination {
            justify-content: space-around; /* Better layout for small screens */
        }
    }



    .selected-member {
        display: inline-block;
        background-color: #f1f1f1;
        padding: 5px 10px;
        margin: 5px;
        border-radius: 5px;
        }
        .remove-member {
        cursor: pointer;
        color: red;
        margin-left: 10px;
        }

    .selected-memberedit {
        display: inline-block;
        background-color: #f1f1f1;
        padding: 5px 10px;
        margin: 5px;
        border-radius: 5px;
        }
        .remove-memberedit {
        cursor: pointer;
        color: red;
        margin-left: 10px;
        }


        /*EXPLAIN WHAT A FIELD DOES TOOL PICK*/
        /* Tooltip container */
        .tooltip-container {
        position: relative;
        cursor: pointer;
        }
        /* Tooltip text */
        .tooltip-container::after {
        content: attr(data-tooltip); /* This allows you to set the tooltip content via HTML */
        position: absolute;
        width: 200px;
        bottom: 125%;
        left: 50%;
        transform: translateX(-50%);
        background-color: #555;
        color: #fff;
        text-align: center;
        padding: 5px;
        border-radius: 6px;
        opacity: 0;
        transition: opacity 0.3s;
        visibility: hidden;
        font-size: 13px;
        }
        /* Show the tooltip when hovering */
        .tooltip-container:hover::after {
        opacity: 1;
        visibility: visible;
        }
        /*EXPLAIN WHAT A FIELD DOES TOOL PICK*/


         /* Center the modal using Flexbox */
        .modal-dialog {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100vh; /* Full viewport height to ensure vertical centering */
        margin: 10 auto; /* Center horizontally */
        }
        /* Modal animations */
        .modal.scale-in .modal-dialog {
        transform: scale(0);
        transition: transform 0.5s ease-in-out;
        }
        .modal.show.scale-in .modal-dialog {
        transform: scale(1);
        }
        /* Rounded corners for modal dialog */
        .modal-content {
        border-radius: 15px; /* Rounded corners */
        }