#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
  }

  /* Estilo del banner */
  #cookie-banner {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    color: #000;
    padding: 20px;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
    border-radius: 10px;
    width: 100%;
    /* max-width: 500px; */
  }

  #cookie-banner button {
    margin-top: 10px;
    background-color: #2E2D2D;
    color: white;
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    border:solid 2px #2E2D2D;
  }

  #cookie-banner button:hover {
    background-color: white;
    color:#2E2D2D ;

  }