body {
    margin: 0;
  }
  
  #consent-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #FFFFFF; /* Changed from black to white */
    color: #000000; /* Text color adjusted to black */
    padding: 20px;
    border-top: 1px solid #d47319; /* Thin border with color #d47319 */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  #consent-popup.hidden {
    display: none;
  }
  
  .consent-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  .consent-container p {
    margin: 0 0 15px 0;
    font-size: 16px;
    color: #000000; /* Ensure text is readable on white background */
  }
  
  .consent-container a {
    color: #d47319; /* Adjusted link color */
    text-decoration: underline;
  }
  
  .consent-container button {
    margin: 0 5px;
    padding: 10px 15px;
    background-color: #d47319; /* Updated button color */
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
  }
  
  .consent-container button:hover {
    background-color: #bf6516;
  }
  
  #details-section {
    margin-top: 15px;
    text-align: left;
  }
  
  #details-section.hidden {
    display: none;
  }
  
  #details-section p {
    font-size: 14px;
    color: #333333;
    margin: 5px 0;
  }  