/*for input type search*/

input[type="search"] {
    width: 100%;
    max-width: 210px;  /* Adjust width as needed */
    height: 10px;
    padding: 10px 15px;
    border: 1px solid #a6b0ac;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease-in-out;
}

input[type="search"]:focus {
    border-color: #324cdd;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
}

/* Remove default clear button in WebKit browsers */
input[type="search"]::-webkit-search-cancel-button {
    display: none;
}


/*data table pagination*/
select[name="DataTables_Table_0_length"] {
    width: 100px;
    padding: 6px 10px;
    height: 10px;
    font-size: 14px;
    border: 1px solid #a6b0ac;
    border-radius: 5px;
    background-color: #f8f9fa;
    transition: all 0.3s ease-in-out;
}

select[name="DataTables_Table_0_length"]:focus {
    border-color: #324cdd;
    /* box-shadow: 0 0 5px rgba(40, 167, 69, 0.5); */
}



        /* Custom margin-bottom */
        .custom-mb { margin-bottom: 10px !important; }

        /* Custom margin-top */
        .custom-mt { margin-top: 10px !important; }

        /* Custom margin-start (left in LTR) */
        .custom-ms { margin-left: 10px !important; }

        /* Custom margin-end (right in LTR) */
        .custom-me { margin-right: 10px !important; }

input[type="checkbox"] {
    width: 15px;
    height: 15px;
    border: 1px solid #000000; /* Blue border */
    outline: 1px solid #000000; /* Outer highlight */
    transition: all 0.3s ease-in-out;
}

input:not([type="submit"]), textarea{
    color: #000000 !important;
}

/* Fixed width and wrapping for multi-select tags */

    /* MAIN SELECT AREA BACKGROUND */
.select2-container--default .select2-selection--multiple {
    background-color: #edf1ef !important; /* Your desired background */
    border: 1px solid #ced4da;
    padding: 4px;
    min-height: 38px;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
     width: 590px;
}

    /* OPTIONAL: FIX THE CONTAINER WIDTH */
.select2-container {
    width: 590px !important;
}

    /* TAGS BACKGROUND */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #6c757d; /* Optional: Darker background for tags */
    color: white;
    margin-top: 2px;
}

    /* INPUT FIELD INSIDE THE MULTISELECT */
.select2-container--default .select2-selection--multiple .select2-search__field {
     background-color: #edf1ef !important; /* Same as main select area */
    border: none;
}