.Green{
    color: green;
}
.table-striped{
     font-size: 13px;
     /* width: auto; */
}
.card{
    height: auto   !important;
    border-top-right-radius: 10px !important;
    border-top-left-radius: 10px !important;
}
.Dsh_Heading{
    text-align: center;
    color: #6a5007;
    margin-top: 10px;
    
}

.pagination-subdomain {
    display: flex;
    justify-content: center; /* Centers the pagination in the middle */
    list-style-type: none; /* Removes bullet points from list items */
    padding: 0; /* Removes padding from the list */
    margin: 0; /* Removes margin from the list */
}

.pagination-subdomain .page-item {
    margin: 0 5px; /* Adds spacing between pagination buttons */
}

.pagination-subdomain .page-link {
    padding: 8px 16px; /* Adjusts the size of the pagination links */
    border: 1px solid #ddd; /* Adds a border around the links */
    color: #055485; /* Link color */
    text-decoration: none; /* Removes underline from the links */
}

.pagination-subdomain .page-item.active .page-link {
    background-color: #055485; /* Background color for active page */
    color: white; /* Text color for active page */
}

.pagination-subdomain .page-item.disabled .page-link {
    pointer-events: none; /* Disables clicking on disabled pages */
    color: #6c757d; /* Disabled link color */
    background-color: #e9ecef; /* Disabled background color */
}
.pagination-subdomain .page-item:last-child {
    display: none; /* Hides the last item (Next Page) */
}