 
    /* Fondo oscuro para el modal */
    #cookieModal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.6);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      
    }

    /* Caja del modal */
    .modal-content {
      background-color: #fff;
      padding: 20px 30px;
      border-radius: 8px;
      max-width: 400px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .modal-content h2 {
      margin-top: 0;
    }

    .modal-content p {
      font-size: 14px;
      margin-bottom: 20px;
    }

    .modal-content button {
      padding: 10px 20px;
      margin: 0 10px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    .accept-btn {
      background-color: #4CAF50;
      color: white;
    }

    .decline-btn {
      background-color: #f44336;
      color: white;
    }