
  #cookie-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    font-family: 'Segoe UI', sans-serif;
  }

  #cookie-box {
    background: #fff;
    border: 3px solid #ff8c00;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
  }

  #cookie-box p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333;
  }

  #cookie-box a {
    color: #005ea8;
    text-decoration: none;
    font-weight: bold;
  }

  #cookie-box button {
    margin: 10px;
    padding: 12px 25px;
    font-size: 1em;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }

  #aceptar {
    background-color: #005ea8;
    color: white;
  }

  #rechazar {
    background-color: #ccc;
    color: #333;
  }