
    #cookieConsent {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 80px; 
      background-color: #f0f0f0;
      border-top: 1px solid #ccc;
      display: none;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      z-index: 9999;
    }
    #cookieConsent button {
      padding: 10px 20px;
      border: none;
      cursor: pointer;
    }
    #acceptBtn {
      background-color: #5cb85c;
      color: #fff;
    }
    
    @media only screen and (max-width: 600px) {
      #cookieConsent {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 250px; 
        background-color: #f0f0f0;
        border-top: 1px solid #ccc;
        display: none;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        z-index: 9999;
      }
    }

  
