/* Vendor Styles - Google Chart and Datatables Table  */


/* Expand Collapse */

td.dt-control {
    min-width: 50px;
    min-height: 30px;
}

td.dt-control {
    background: url('https://www.datatables.net/examples/resources/details_open.png') no-repeat center center;
    cursor: pointer;
}
tr.shown td.dt-control {
    background: url('https://www.datatables.net/examples/resources/details_close.png') no-repeat center center;
}

/*  Align control image to top  */

td.dt-control {
    vertical-align: top !important;
    background-position: center 10px !important;
    padding-top: 10px;  
}


/*  Chart Styles */

.responsive-chart {
  width: 100%;
  max-width: 900px;
  height: auto;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 600px) {
  .responsive-chart {
    aspect-ratio: 4 / 3;
    padding: 10px;
  }
}

/*Datatables pagination */

/* Container for pagination */
.dataTables_wrapper .dataTables_paginate {
    margin-top: 1em;
    text-align: center;
}

/* Pagination buttons */
.dataTables_wrapper .dataTables_paginate .paginate_button {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 2px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    color: #333;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

/* Hover effect */
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background-color: #e9ecef;
    color: #000;
}

/* Active page */
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background-color: #007bff !important;
    /* color: white !important; */
    border-color: #007bff !important;
    border: 2px solid;
}

/* Disabled buttons */
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
    color: #ccc !important;
    cursor: default;
    background-color: #f1f1f1;
    border-color: #ddd;
}



/* Increasing accessibility of the page */
.visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


/*   Make chart larger   */
 #gpoPieChart {
    min-height: 23rem;
    width: 100%;
  }
  
/* Make sure legend is vertical on mobile   */


@media (max-width: 600px) {
    #gpoPieChart text {
        display: block;
        white-space: nowrap;
        
    }
}


@media (max-width: 600px) {
    #gpoPieChart svg g[aria-label*="legend"] text {
        display: block;
        white-space: nowrap;
    }
}



@media (max-width: 600px) {
    #gpoPieChart svg g[aria-label*="legend"] text {
        display: block;
        white-space: nowrap;
        margin-bottom: 0.5rem;
    }
}



#gpoPieChart svg g[column-id] {
    display: block;
    white-space: nowrap;
}



/*   Custom Legend   */

 
/*#custom-legend {*/
/*  flex: 1;*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  gap: 0.5rem;*/
/*}*/

 