@charset "utf-8";
/* CSS Document */

    .divTable{
      display: table;
      width: 100%;
    }
    .divTableRow {
      display: table-row;
    }
    .divTableHeading {
      background-color: #EEE;
      display: table-header-group;
    }
    .divTableCell, .divTableHead {
      border: 1px solid #FFF;
      display: table-cell;
      padding: 3px 10px;
    }
    .divTableHeading {
      background-color: #EEE;
      display: table-header-group;
      font-weight: bold;
    }
    .divTableFoot {
      background-color: #EEE;
      display: table-footer-group;
      font-weight: bold;
    }
    .divTableBody {
      display: table-row-group;
    }  

    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: rgba(255, 255, 255, 0.8);
      padding: 15px;
      text-align: center;
      border-top: 1px solid #ccc;
      z-index: 1000;
    }

    .cookie-management {
      position: fixed;
      bottom: 40px; /* Adjust based on banner height */
      left: 0;
      right: 0;
      background-color: white;
      padding: 20px;
      border: 1px solid #ccc;
      z-index: 1001;
    }

    .cookie-category {
      margin: 10px 0;
    }

    .banner {
      background-color: rgb(219, 75, 75,0.7); /* Green background */
      color: white; /* White text */
      padding: 15px; /* Some padding */
      text-align: center; /* Centered text */
      position: fixed; /* Fixed position */
      top: 0; /* At the top */
      left: 0; /* Full width */
      right: 0; /* Full width */
      z-index: 1000; /* On top of other content */
    }

    #close-banner {
      background: none;
      border: none;
      color: white;
      font-size: 20px;
      cursor: pointer;
      position: absolute;
      right: 10px;
      top: 5px;
    }
