﻿.table-grid tr {
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}

.table-grid tr {
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}

.table-grid .table_row {
    /*height: 185px;*/
}


.table-grid .gridColumn {
    padding-top: 10px;
    padding-bottom: 10px;
}


.wrap-table-grid {
    overflow: auto;
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
}

.table-grid {
    border-collapse: collapse;
    width: 100%;
    min-width: 680px;
}

.textLeft {
    padding-left: 10px;
    text-align: left;
}

.textRight {
    padding-right: 10px;
    text-align: right;
}

.textCenter {
    text-align: center;
}

/* Style for pagination container */
.pagination-container {
    margin-top: 30px;
    justify-content: center;
    display: flex;
}

/* General pagination styles */
.pagination {
    display: flex;
    justify-content: center;
    padding-left: 0;
    list-style: none;
    margin: 0;
}

    /* Pagination item styles */
    .pagination .page-item {
        margin: 0 5px;
    }

    /* Pagination link styles */
    .pagination .page-link {
        border: 1px solid #ddd;
        padding: 8px 16px;
        font-size: 16px;
        color: #007bff;
        text-decoration: none;
        display: block;
        border-radius: 5px;
        background-color: #fff;
        transition: background-color 0.3s, color 0.3s;
    }

        /* Styles when hovering over page links */
        .pagination .page-link:hover {
            background-color: #007bff;
            color: white;
        }

    /* Active page styles */
    .pagination .page-item.activate .page-link {
        background-color: #007bff;
        border-color: #007bff;
        color: white;
    }

    /* Disabled previous/next buttons styles */
    .pagination .page-item.disabled .page-link {
        color: #ccc;
        pointer-events: none;
        cursor: not-allowed;
    }

    /* Style for the previous and next buttons */
    .pagination .page-item .page-link {
        font-weight: bold;
    }

/* Adjusting size for smaller screens */
@media (max-width: 576px) {
    .pagination .page-link {
        padding: 6px 12px;
        font-size: 14px;
    }
}

/* Optional: Custom tooltip styling */
.tooltip-inner {
    background-color: #007bff; /* Custom background color */
    color: #fff; /* Text color */
    font-size: 14px; /* Tooltip text size */
    border-radius: 5px; /* Rounded corners */
}

.tooltip-arrow {
    border-top-color: #007bff; /* Tooltip arrow color */
}

.customRow {
    margin-left: 0px !important;
    margin-right: 0px !important;
}


/* Style for the dropdown container */
.dropDownSelect {
    display: flex;
    align-items: center;
    padding-left: 5px;
}

    /* Label styling for records per page */
    .dropDownSelect label {
        font-size: 14px;
        font-weight: 600;
        color: #333;
        padding-left: 5px;
    }

/* Styling for the select dropdown (records per page) */
#recordsPerPageDropdown {
    padding: 8px 15px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    transition: border-color 0.3s, background-color 0.3s;
    cursor: pointer;
}

    /* Hover effect for the dropdown */
    #recordsPerPageDropdown:hover {
        border-color: #007bff;
    }

    /* Focus effect for the dropdown */
    #recordsPerPageDropdown:focus {
        outline: none;
        border-color: #0056b3;
        box-shadow: 0 0 5px rgba(0, 86, 179, 0.3); /* Adds a blue glow on focus */
    }

    /* Dropdown options styling */
    #recordsPerPageDropdown option {
        padding: 8px 10px;
        background-color: #fff;
        color: #333;
    }
